Skip to content

GH-90: Initial work to migrate to manifest version 3. #127

GH-90: Initial work to migrate to manifest version 3.

GH-90: Initial work to migrate to manifest version 3. #127

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
env:
HEADLESS: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm install
- name: Lint Code
run: npm run lint
- name: Node Tests
run: xvfb-run --auto-servernum npm test
- name: Cleanup after xvfb
uses: bcomnes/cleanup-xvfb@v1
- name: Security Audit
run: $(npm bin)/check-audit