Skip to content

Bump rimraf from 5.0.5 to 5.0.7 #1097

Bump rimraf from 5.0.5 to 5.0.7

Bump rimraf from 5.0.5 to 5.0.7 #1097

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: [18, 20]
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)"