Skip to content

Build and test in CI #39

Build and test in CI

Build and test in CI #39

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "17"
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run test