mirror of
https://github.com/quantum5/qcal.git
synced 2025-04-24 09:41:57 -04:00
Add GitHub actions to do some basic testing
This commit is contained in:
parent
bdf55e5e69
commit
7202b1e47c
22
.github/workflows/build.yml
vendored
Normal file
22
.github/workflows/build.yml
vendored
Normal file
|
@ -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
|
Loading…
Reference in a new issue