Skip to content

Commit

Permalink
fix: remove comments from ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bnb authored Sep 23, 2019
1 parent e440a57 commit cefc10e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on: [push]

jobs:
build:
runs-on: ${{ matrix.os }} # pull from the os in the matrix – this dynamically loops over all operating systems
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] # latest versions of all operating systems
node-version: [8.x, 10.x, 12.x] # all supported versions of Node.js at time of commit
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1 # use the checkout action
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} # title the GitHub Check
uses: actions/setup-node@v1 # use the setup action for Node.js
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }} # pull from the version in the matrix – this dynamically loops over all versions
- name: npm install and test # title of our install and test
run: |
npm install # runs npm install
npm test # runs npm test
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
env:
CI: true

0 comments on commit cefc10e

Please sign in to comment.