1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-27 08:15:00 +04:00
Files
tabler/.github/workflows/test.yml
dependabot[bot] 5de51df878 Bump actions/checkout from 2 to 3 (#1141)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-09 01:37:51 +02:00

40 lines
676 B
YAML

name: Test build
on:
pull_request:
types: [ opened, reopened ]
env:
NODE: 14
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
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