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: Test
on:
pull_request:
branches:
- trunk
push:
branches:
- trunk
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 18
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/[email protected]
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Test
run: npm run test:unit