Skip to content

Bump braces from 3.0.2 to 3.0.3 #40

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #40

Workflow file for this run

name: CI Checks
on: [push, pull_request]
jobs:
lint:
name: Check audit, lint, and prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm audit
- run: npm run lint
- run: npm run prettier
env:
CI: true
test:
name: Test node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [ '14', '16', '18' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test