Skip to content

Sync with Cookiecutter template #1

Sync with Cookiecutter template

Sync with Cookiecutter template #1

Workflow file for this run

name: Run unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use specified Node.js version
uses: actions/setup-node@v2
with:
node-version-file: .nvmrc
- name: Install dependencies
run: yarn install
- name: Compile
run: yarn compile
- name: Run linter
run: yarn lint
- name: Run unit tests
run: yarn test