Skip to content

update react router #42

update react router

update react router #42

Workflow file for this run

name: Lint and test
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install Node.JS
uses: actions/setup-node@v6
with:
check-latest: true
cache: 'yarn'
node-version-file: '.tool-versions'
- name: Install Javascript dependencies
run: yarn install --immutable
- name: Check lints
run: yarn run lint
- name: Check tests
run: yarn run test