Skip to content

Bump braces from 3.0.2 to 3.0.3 #62

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #62

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16, 18, 20]
steps:
- name: Reconfigure git to use HTTP authentication
uses: actions/checkout@v3
- run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm test