This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
6.3.0 #106
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: 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 |