Skip to content

Bump @babel/preset-env from 7.22.9 to 7.23.2 in /examples (#442) #719

Bump @babel/preset-env from 7.22.9 to 7.23.2 in /examples (#442)

Bump @babel/preset-env from 7.22.9 to 7.23.2 in /examples (#442) #719

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- "**"
env:
FORCE_COLOR: 2
NODE: 16
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [16, 18]
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)"