Skip to content

Bump json5 from 2.2.0 to 2.2.3 #100

Bump json5 from 2.2.0 to 2.2.3

Bump json5 from 2.2.0 to 2.2.3 #100

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request_target:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "14", "16"]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install modules
run: yarn
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Run tests
run: yarn test