Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

bump braces

bump braces #58

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci_tests_node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.x', '16.x']
name: Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test