Skip to content

feat: bump package and refactor scripts #14

feat: bump package and refactor scripts

feat: bump package and refactor scripts #14

Workflow file for this run

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