Skip to content

Fix year old bug

Fix year old bug #8

Workflow file for this run

name: Lint and test
on: [push, pull_request]
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
#fail-fast: false
matrix:
nodejs: ['16']
steps:
- uses: actions/checkout@v2
# https://github.com/actions/setup-node
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.nodejs }}
- run: yarn install
- run: yarn test
- run: yarn lint
- run: yarn build