-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Github Actions Integration (#202)
Co-authored-by: Jon Koops <[email protected]>
- Loading branch information
1 parent
753b91f
commit ee066bc
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Build and Test | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main, beta ] | ||
pull_request: | ||
branches: [ main, beta ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
||
jobs: | ||
|
||
build: | ||
strategy: | ||
matrix: | ||
node: [ 16, 18, 20 ] | ||
|
||
name: Build Package (Node ${{ matrix.node }}) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: npm | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build package | ||
run: npm run build | ||
|
||
- name: Lint | ||
run: npm run lint && npm run lint:package | ||
|
||
- name: Run tests against browser | ||
run: npm run test:browser | ||
|
||
- name: Run tests against Node | ||
run: npm run test:node |