Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmurphy committed May 13, 2020
1 parent f34eab2 commit 6857038
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: npm install
run: npm ci

- name: Build the client library
run: npm run build

- name: Run tests
run: npm run test:node

Expand All @@ -56,10 +59,10 @@ jobs:
- name: Clone repository
uses: actions/checkout@v2

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

- name: Cache node modules
uses: actions/cache@v1
Expand All @@ -76,6 +79,9 @@ jobs:
- name: npm install
run: npm ci

- name: Build the client library
run: npm run build

- name: Run tests
run: npm run test:browser
env:
Expand Down

0 comments on commit 6857038

Please sign in to comment.