Skip to content

Bump @babel/preset-env from 7.22.10 to 7.22.15 #5461

Bump @babel/preset-env from 7.22.10 to 7.22.15

Bump @babel/preset-env from 7.22.10 to 7.22.15 #5461

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