Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

6.4.0

6.4.0 #109

Workflow file for this run

name: Node.js CI
on: push
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Node.js specs ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --force # Temporary until we resolve dep issues
- run: npm run test:format
specs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Node.js web specs ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
env:
MOZ_HEADLESS: 1
CI: github
- run: sudo apt install google-chrome-stable firefox
- run: google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
- run: npm install --force # Temporary until we resolve dep issues
- run: npm run test:specs