Skip to content

Merge branch 'main' into release/1.0.0 #261

Merge branch 'main' into release/1.0.0

Merge branch 'main' into release/1.0.0 #261

Workflow file for this run

name: Build and test
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: 'Install'
run: npm ci
- name: 'Lint'
run: npm run lint
- name: 'Build'
run: npm run build:release
- name: 'Test'
run: npm run test