Skip to content

chore(deps-dev): bump jest from 30.2.0 to 30.3.0 #81

chore(deps-dev): bump jest from 30.2.0 to 30.3.0

chore(deps-dev): bump jest from 30.2.0 to 30.3.0 #81

Workflow file for this run

name: qa
on:
push:
paths-ignore:
- '.github/workflows/reward.yml'
- '.github/workflows/reward-merged-prs.yml'
- '.github/ISSUE_TEMPLATE/*'
- '*.md'
branches:
- master
pull_request:
paths-ignore:
- '.github/workflows/reward.yml'
- '.github/workflows/reward-merged-prs.yml'
- '.github/ISSUE_TEMPLATE/*'
- '*.md'
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: install dependencies
run: npm ci
- name: run lint
run: npm run lint
build:
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 25
- 24
- 18
- 20
- 22
- 23
architecture:
- x64
name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.architecture }}
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: install dependencies
run: npm ci
- name: run build
run: npm run build
- name: run test
run: |
if [ "${{ matrix.node_version }}" = "25" ]; then
npm test -- --coverage
else
npm test
fi