Skip to content

update: ignore package-lock #6

update: ignore package-lock

update: ignore package-lock #6

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: npm ci
- name: Upload npm debug log
if: failure()
uses: actions/upload-artifact@v2
with:
name: npm-error-log
path: /home/runner/.npm/_logs/*.log
- name: Run tests
run: npm test