Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Github Actions Integration #202

Merged
merged 6 commits into from
Aug 28, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
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 --include=dev
frederikprijck marked this conversation as resolved.
Show resolved Hide resolved
frederikprijck marked this conversation as resolved.
Show resolved Hide resolved

- 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





frederikprijck marked this conversation as resolved.
Show resolved Hide resolved