-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KEYCLOAK-16151] Migrate nodejs-connect to GitHub Actions
- Loading branch information
Bruno Oliveira da Silva
committed
Nov 12, 2020
1 parent
704a60f
commit 29d9f84
Showing
2 changed files
with
19 additions
and
5,710 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,19 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [10.x, 11.x, 12.x, 13.x] | ||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
- name: Start Docker image | ||
run: ./scripts/start-server.sh | ||
- name: Run Node.js ${{ matrix.node }} tests | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: make lint | ||
- run: ./run-tests.sh |
Oops, something went wrong.