Skip to content

Disable eslint plugin in local demo devserver #159

Disable eslint plugin in local demo devserver

Disable eslint plugin in local demo devserver #159

Workflow file for this run

name: Build and run tests
on: [push]
jobs:
build-test:
name: Build and test package
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.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
- run: yarn prettier-check
- run: yarn lint-check
- run: yarn build-lib
- run: yarn type-check-app
- run: yarn test-lib
- run: yarn test-app