Skip to content

update lockfile

update lockfile #69

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup NodeJS
uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Checkout
uses: actions/checkout@v2
- name: Install NPM dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build