Install newest @tanstack/react-router #7404
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NPM CI | |
on: | |
push: | |
branches: [master, stable] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build and test | |
runs-on: buildjet-4vcpu-ubuntu-2004 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Read .tool-versions | |
uses: marocchino/tool-versions-action@v1 | |
id: versions | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{steps.versions.outputs.nodejs}} | |
- run: npm install --prefix ./assets | |
- run: npm install --prefix ./tracker | |
- run: npm run lint --prefix ./assets | |
- run: npm run check-format --prefix ./assets | |
- run: npm run deploy --prefix ./tracker |