Update dependency upgrades - non-major #933
Workflow file for this run
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: Lint, Check Types, Test, Run Program | |
on: push | |
jobs: | |
lint-and-check-types: | |
name: Lint, Check Types, Test, Run Program | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- run: npm ci | |
- run: npx eslint . --max-warnings 0 | |
- run: npx tsc | |
- run: npm test | |
- run: node index.js sortBySubscriptionDate |