Skip to content

Bump braces from 3.0.2 to 3.0.3 #12

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #12

Workflow file for this run

name: test
on:
pull_request:
branches:
- master
push:
branches:
- '**'
tags:
- '*.*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x,20.x,21.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and build
run: |
npm ci
npm run build
- name: test
run: |
npm test
env:
CI: true