Skip to content

chore(deps): update dependency npm-run-all2 to v6.2.6 #214

chore(deps): update dependency npm-run-all2 to v6.2.6

chore(deps): update dependency npm-run-all2 to v6.2.6 #214

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:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20]
runs-on: ${{ matrix.os }}
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: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Run all tests
run: npm test
- name: Generate and check types
run: npm run types