Skip to content

Commit

Permalink
chore(build): run actions w/ node 12.10.0 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 7, 2020
1 parent b175475 commit a6f2c8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@master

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

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -48,14 +48,14 @@ jobs:

- name: Unload build artifacts
uses: actions/upload-artifact@master
if: matrix.os == 'ubuntu-latest' && matrix.node == '12'
if: matrix.os == 'ubuntu-latest' && matrix.node == '12.10.0'
with:
name: stencil-build
path: stencil-build.tgz

- name: Run karma tests
working-directory: ./test/karma
if: matrix.os == 'ubuntu-latest' && matrix.node == '12'
if: matrix.os == 'ubuntu-latest' && matrix.node == '12.10.0'
run: |
wget "https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip"
unzip BrowserStackLocal-linux-x64.zip
Expand Down

0 comments on commit a6f2c8e

Please sign in to comment.