Skip to content

Merge pull request #1 from resonatecoop/npm-audit #4

Merge pull request #1 from resonatecoop/npm-audit

Merge pull request #1 from resonatecoop/npm-audit #4

Workflow file for this run

name: Node
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm test