Skip to content

PR: Post demo FE fixes #178

PR: Post demo FE fixes

PR: Post demo FE fixes #178

Workflow file for this run

name: Code Check
on:
pull_request:
branches: [main]
paths-ignore: ["**.md"]
jobs:
code-check:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version: 20.5.0
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test