Skip to content

Commit

Permalink
Add Ubuntu tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Jul 5, 2023
1 parent e431d00 commit bb14778
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: npm run package

test:
name: Tests
name: MacOS Tests
runs-on: macos-latest
steps:
- name: Checkout
Expand All @@ -60,6 +60,26 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

test:
name: Ubuntu Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci

- name: Integration Tests
run: npm run test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

windows-build:
name: Windows Build
runs-on: windows-latest
Expand Down

0 comments on commit bb14778

Please sign in to comment.