Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into feature/labs_tab
Browse files Browse the repository at this point in the history
  • Loading branch information
HospitalRun Bot committed Apr 22, 2020
2 parents 9bd1c86 + 5631344 commit 45a03e0
Showing 1 changed file with 29 additions and 8 deletions.
37 changes: 29 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x, 14.x]
# node-version: [12.x, 14.x]
node-version: [12.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
# exclude:
# - os: windows-latest
# node-version: 13.x
steps:
- run: git config --global core.autocrlf false # this is needed to prevent git changing EOL after cloning on Windows OS
- uses: actions/checkout@v2
Expand All @@ -38,16 +36,39 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info

npm-node14:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x]
os: [ubuntu-latest]
steps:
- run: git config --global core.autocrlf false # this is needed to prevent git changing EOL after cloning on Windows OS
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install with npm
run: |
npm install
- name: Lint code
run: |
npm run lint
- name: Build
run: |
npm run build
- name: Run tests
run: |
npm run test:ci
yarn:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x, 14.x]
node-version: [12.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
# exclude:
# - os: windows-latest
# node-version: 13.x
steps:
- run: git config --global core.autocrlf false # this is needed to prevent git changing EOL after cloning on Windows OS
- uses: actions/checkout@v2
Expand Down

0 comments on commit 45a03e0

Please sign in to comment.