Skip to content

Bump braces from 3.0.2 to 3.0.3 #21

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #21

Workflow file for this run

name: test
on: [push, pull_request]
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, 13, 14]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Test
run: npm test