Merge pull request #169 from duhrer/GH-155 #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.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: Install Security Audit Globally | |
run: npm install -g npm-audit-resolver | |
- name: Security Audit | |
run: check-audit |