Skip to content

Commit

Permalink
Add GitHub actions to do some basic testing
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum5 committed Jul 15, 2023
1 parent bdf55e5 commit 7202b1e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
directory: [common, frcal, jcal]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci --include=dev
- name: Build
run: |
cd ${{ matrix.directory }}
[ "${{ matrix.directory }}" != common ] && CI=false npm run build
npm test -- --watchAll=false --ci --passWithNoTests

0 comments on commit 7202b1e

Please sign in to comment.