Skip to content

add Router

add Router #3

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
jobs:
lint-build-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
# todo: setup test
# - name: Test
# run: npm run test