Skip to content

Bump react-router and @remix-run/react #356

Bump react-router and @remix-run/react

Bump react-router and @remix-run/react #356

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Install Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '18'
- name: NPM Install
run: if [ -e package-lock.json ]; then npm ci; else npm i; fi
- name: Run eslint linter
run: npx eslint --max-warnings 0 .
- name: Run TypeScript compiler
run: npx tsc
- name: Run Prettier code style checks
run: npx prettier -c .