Skip to content

Format and fix tooling configuration #3

Format and fix tooling configuration

Format and fix tooling configuration #3

Workflow file for this run

name: Check
on:
- push
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
with:
node-version: "16.x"
- run: npm ci --legacy-peer-deps
- run: npm run lint
- run: npm run compile
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
with:
node-version: "16.x"
- run: npm ci --legacy-peer-deps
- run: npm run test