Skip to content

Update dependency upgrades - non-major (#535) #855

Update dependency upgrades - non-major (#535)

Update dependency upgrades - non-major (#535) #855

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