Skip to content

CI workflows overhaul: Remove build from repo #17

CI workflows overhaul: Remove build from repo

CI workflows overhaul: Remove build from repo #17

Workflow file for this run

name: Build and run unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
name: Build and run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20.8.1
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test