Skip to content

Bump json5 from 2.1.3 to 2.2.3 #29

Bump json5 from 2.1.3 to 2.2.3

Bump json5 from 2.1.3 to 2.2.3 #29

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: master
pull_request:
branches: master
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install the dependencies using the package manager whose lock file is in the root dir
uses: jaid/[email protected]
- name: Run static checks
run: npm run --if-present lint
- name: Build
run: npm run build
- name: Upload the build
uses: actions/upload-artifact@v2
with:
name: build
path: build
test:
needs: build
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
node: [12, 14]
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install the dependencies using the package manager whose lock file is in the root dir
uses: jaid/[email protected]
- name: Test
run: npm run test
ci:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finish successfully
run: exit 0