keycloak-scim/.github/workflows/main.yml

25 lines
457 B
YAML
Raw Normal View History

2021-09-24 13:47:36 +00:00
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out Admin UI
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16
check-latest: true
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build