Skip to content

Bump braces from 3.0.2 to 3.0.3 #355

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #355

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '20', '22']
max-parallel: 1
name: Node ${{ matrix.node }} Test
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Node Modules
run: npm install
- name: Build package
run: npm run build
- name: Run tests
env:
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
run: npm test