updated data and fixed off by one error in line graph #75
Workflow file for this run
This file contains hidden or 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
on: [pull_request] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
name: Run eslint | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "22.x" | |
- run: yarn | |
- run: yarn analyze | |
typescript: | |
runs-on: ubuntu-latest | |
name: Check types | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "22.x" | |
- run: yarn | |
- run: yarn type-check |