Skip to content

chore(deps-dev): bump @babel/runtime from 7.28.4 to 7.29.7 #662

chore(deps-dev): bump @babel/runtime from 7.28.4 to 7.29.7

chore(deps-dev): bump @babel/runtime from 7.28.4 to 7.29.7 #662

Workflow file for this run

name: Test
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
~/.npm
~/.config/yarn/global
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Typescript
run: yarn typescript
- name: ESLint
run: yarn lint
- name: Run Tests
run: yarn test --passWithNoTests
- name: Validate docs
run: yarn build-docs --treatWarningsAsErrors