Update dependency upgrades - non-major #843
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, Jest | |
on: push | |
jobs: | |
build: | |
name: Lint, Check Types, Jest | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- run: yarn --frozen-lockfile | |
- run: yarn eslint . --max-warnings 0 | |
- run: yarn stylelint '**/*.{js,tsx,css,scss}' --max-warnings 0 | |
- run: yarn tsc | |
# Run the Jest unit tests | |
- run: yarn jest |