-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Update GitHub Actions config for uniformity
This updates CI configuration for this repo with the following changes: - the core configuration for running unit tests is moved to _test.yml so it can be shared - a new pull request workflow is added that only runs on external forks, and runs unit tests - Ubuntu versions are now pulled from a GitHub Actions variable (see pelias/pelias#951)
- Loading branch information
1 parent
5cfaf29
commit 21a7be4
Showing
3 changed files
with
34 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Unit Tests | ||
on: workflow_call | ||
jobs: | ||
unit-tests: | ||
runs-on: '${{ matrix.os }}' | ||
strategy: | ||
matrix: | ||
os: | ||
- ${{ vars.UBUNTU_VERSION }} | ||
node-version: | ||
- 12.x | ||
- 14.x | ||
- 16.x | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: 'Install node.js ${{ matrix.node-version }}' | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
- name: Run unit tests | ||
run: | | ||
npm install | ||
npm run ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: Continuous Integration | ||
on: pull_request | ||
jobs: | ||
unit-tests: | ||
# only run this job for forks | ||
if: github.event.pull_request.head.repo.full_name != github.repository | ||
uses: ./.github/workflows/_test.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters