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

Commit

Permalink
Merge pull request #70 from buttercup/tabs
Browse files Browse the repository at this point in the history
Tabs
  • Loading branch information
perry-mitchell authored Jun 22, 2022
2 parents d7b13a8 + d873c8a commit 2d23e06
Show file tree
Hide file tree
Showing 26 changed files with 32,279 additions and 46,334 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,34 @@ name: Node.js CI
on: push

jobs:
specs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x] # Node v15 not supported yet (node-sass)
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 ci
- run: npm test
- 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
Loading

0 comments on commit 2d23e06

Please sign in to comment.