Skip to content

Bump babel-jest from 29.6.4 to 29.7.0 #5495

Bump babel-jest from 29.6.4 to 29.7.0

Bump babel-jest from 29.6.4 to 29.7.0 #5495

Workflow file for this run

---
name: pr-tests
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
env:
NODE_ENV: development
TEST_TIMEOUT: 60000
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version-file: "package.json"
- run: npm ci
- name: Build
run: npm run build
- name: Test - Unit
run: npm run test:unit
- name: Lint
run: npm run lint