Skip to content

Commit

Permalink
Merge 65d49c1 into 7f4a5e1
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Jun 1, 2021
2 parents 7f4a5e1 + 65d49c1 commit 213018e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/CI.yml
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Reconfigure Git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand All @@ -36,7 +41,7 @@ jobs:
run: npm ci

- name: Run InfluxDB
run: docker run -d -p 8083:8083 -p 8086:8086 influxdb
run: docker run -d -p 8083:8083 -p 8086:8086 influxdb:1.8

- name: Run tests in browser
run: npm run test:browser
Expand All @@ -54,6 +59,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Reconfigure Git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 213018e

Please sign in to comment.