Bump @babel/runtime from 7.25.4 to 7.25.7 in /examples (#821) #1457
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
env: | |
FORCE_COLOR: 2 | |
NODE: 20 | |
jobs: | |
run: | |
name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [20, 22] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install npm dependencies | |
run: cd examples && yarn install && cd .. && yarn install | |
- name: Run Jest tests | |
run: yarn test | |
if: "!(startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE)" |