-
Notifications
You must be signed in to change notification settings - Fork 6
62 lines (59 loc) · 1.73 KB
/
main.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 2023 Digital Bazaar, Inc.
#
# SPDX-License-Identifier: BSD-3-Clause
name: Generate Interop Report
on:
workflow_dispatch:
push:
schedule:
# update the integration suite once per week at Sunday 5am UTC
- cron: '0 5 * * 0'
jobs:
lint:
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run eslint
run: npm run lint
test-node:
if: ${{ github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install npm dependencies
run: npm install
- name: Run test with Node.js ${{ matrix.node-version }}
env:
CLIENT_SECRET_DB: ${{ secrets.CLIENT_SECRET_DB }}
KEY_SEED_DB: ${{ secrets.KEY_SEED_DB }}
DISABLE_INTEROP: false
run: npm run test
continue-on-error: true
- name: Deploy to Github Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: reports
token: ${{ secrets.GITHUB_TOKEN }}
- name: Report Github Pages Deployment Status
run: echo $deployment_status