Skip to content

Refresh some packages and node version #77

Refresh some packages and node version

Refresh some packages and node version #77

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install all dependencies
run: yarn install --frozen-lockfile
- name: Check text spelling with yaspeller
run: yarn spell
- name: Lint code with eslint
run: yarn lint
- name: Run unit-tests
run: yarn jest