Skip to content

Bump braces from 3.0.2 to 3.0.3 #75

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #75

Workflow file for this run

name: Run test suite
on: [pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Run test command
run: yarn run test-ci