Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2076 from sinonjs/github-workflow
Added Github Workflow
  • Loading branch information
fearphage committed Aug 28, 2019
2 parents e716d8d + 261c4cd commit 766cae4
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,39 @@
name: Node CI

on: [push]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8, 10, 12]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Pre-Test
run: |
npm run lint
npm run test-headless -- --chrome $(which google-chrome-stable) --allow-chrome-as-root
npm run test-webworker -- --chrome $(which google-chrome-stable) --allow-chrome-as-root
npm run test-esm-bundle
if: matrix.node-version == 10

- name: npm test
run: npm run test-node

- name: generate coverage
run: npm run test-coverage -- --chrome $(which google-chrome-stable) --allow-chrome-as-root
if: matrix.node-version == 10
- name: coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
if: matrix.node-version == 10

0 comments on commit 766cae4

Please sign in to comment.