8000 breaking: Support Jest 30 (#570) · vuejs/vue-jest@f0953b7 · GitHub
[go: up one dir, main page]

Skip to content

breaking: Support Jest 30 (#570) #257

breaking: Support Jest 30 (#570)

breaking: Support Jest 30 (#570) #257

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
- next
paths:
- '**'
- '!**.md'
pull_request:
branches:
- master
- next
paths:
- '**'
- '!**.md'
jobs:
test:
strategy:
matrix:
node: [18, 20, 22, 24]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Project Dependencies
run: yarn --frozen-lockfile
- name: Test
run: yarn test
0