Skip to content

Release/0.4.0

Release/0.4.0 #9

Workflow file for this run

name: Test and build
on:
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.10.0
- name: Install dependencies
run: npm ci
# TODO: setup ESLint
# - name: Lint
# run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test:ci