-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
107 additions
and
69 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,48 @@ | ||
# Github actions workflow name | ||
name: CI | ||
|
||
# Triggers the workflow on push or pull request events | ||
on: | ||
push: | ||
branches: [main, master] | ||
tags: ['**'] | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
node_tests: | ||
name: 'Test nib on ${{matrix.os}} with node${{matrix.node}}' | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
# Latest four Nodejs LTS version | ||
node: [10, 12, 14, 16] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
# Pull repo to test machine | ||
- uses: actions/checkout@v2 | ||
# Configures the node version used on GitHub-hosted runners | ||
- uses: actions/setup-node@v2 | ||
with: | ||
# The Node.js version to configure | ||
node-version: ${{ matrix.node }} | ||
# Caching dependencies to speed up workflows | ||
- name: Get npm cache directory | ||
id: npm-cache-dir | ||
run: | | ||
echo "::set-output name=dir::$(npm config get cache)" | ||
- uses: actions/cache@v2 | ||
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true' | ||
with: | ||
path: ${{ steps.npm-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- name: Install npm dependencies | ||
run: npm install | ||
- name: Print put node & npm version | ||
# Output useful info for debugging. | ||
run: node --version && npm --version | ||
- name: Run Test | ||
run: npm test |
This file was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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