Skip to content

Commit

Permalink
[KEYCLOAK-16151] Migrate nodejs-connect to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Oliveira da Silva committed Nov 12, 2020
1 parent 704a60f commit 29d9f84
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5,710 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
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
Loading

0 comments on commit 29d9f84

Please sign in to comment.