Skip to content

Commit

Permalink
chore(actions): update nodejs version in matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
bartholomej committed Dec 8, 2019
1 parent 832179a commit 018c2ed
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,23 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [10.x, 12.x, 13.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and build all browsers
run: |
npm install
npm run build:chrome
npm run build:firefox
npm run build:opera
env:
CI: true
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and build all browsers
run: |
npm install
npm run build:chrome
npm run build:firefox
npm run build:opera
env:
CI: true

0 comments on commit 018c2ed

Please sign in to comment.