Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Switched to Node.js container in Action
Browse files Browse the repository at this point in the history
no issue

- using the setup-node action is currently failing because of an
  upstream issue - nodejs/node#32683
- this commit switches to using a Docker container
  • Loading branch information
daniellockyer committed Apr 6, 2020
1 parent bf7b1e0 commit e4df8e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container: node:10
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
strategy:
matrix:
Expand All @@ -19,9 +20,6 @@ jobs:
CI: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10
- run: yarn
- run: yarn lint:js
- run: yarn test
Expand Down

0 comments on commit e4df8e1

Please sign in to comment.