Skip to content

fix(deps): update dependency react-scripts to v3.4.4 #4

fix(deps): update dependency react-scripts to v3.4.4

fix(deps): update dependency react-scripts to v3.4.4 #4

Workflow file for this run

name: Run all tests on PR
permissions:
id-token: write
contents: read
on:
pull_request:
branches:
- main
- alpha
- beta
- next
jobs:
run-all-tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run all tests
run: npm test
- name: Generate and check types
run: npm run types
- name: Lint
run: npm run lint