Skip to content

Feature/fix-layout

Feature/fix-layout #2

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run format:check
- run: npm run lint
- run: npm run test