Skip to content

build(deps-dev): bump json5 from 2.2.0 to 2.2.3 #91

build(deps-dev): bump json5 from 2.2.0 to 2.2.3

build(deps-dev): bump json5 from 2.2.0 to 2.2.3 #91

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: Cache dependencies Node
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install
run: npm i
- name: Lint
run: npm run lint
- name: Clean module
run: rm -rf node_modules