1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

Update dependencies (#996)

This commit is contained in:
Paweł Kuna
2022-01-18 22:19:43 +01:00
committed by GitHub
parent 379794a454
commit 116800c660
4 changed files with 4589 additions and 2102 deletions

36
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Test build
on:
pull_request:
types: [ opened, reopened ]
env:
NODE: 14
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- run: ruby --version
- run: node --version
- name: Install npm dependencies
run: npm ci
- name: Build
run: npm run build