-
Notifications
You must be signed in to change notification settings - Fork 91
37 lines (35 loc) · 922 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
test-suite:
- test
- test:security
steps:
- uses: actions/checkout@v4
- name: Set up system
run: bin/before_install
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: ${{ !env.ACT && 'yarn' || '' }}
registry-url: https://npm.manageiq.org/
- name: Prepare tests
run: bin/setup
- name: Run tests
run: yarn run ${{ matrix.test-suite }}
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.test-suite != 'test:security' }}
continue-on-error: true
run: cat reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js