Skip to content

Merge pull request #78 from LtbLightning/v31-upgrade #43

Merge pull request #78 from LtbLightning/v31-upgrade

Merge pull request #78 from LtbLightning/v31-upgrade #43

# This workflow will do perform linting and unit testing on each push
name: Lint and unit test CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn run lint
- run: yarn run test:ci