-
Notifications
You must be signed in to change notification settings - Fork 7
60 lines (58 loc) · 1.82 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
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
timeout-minutes: 10
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: 10
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 }}
CLIENT_SECRET_MAVENNET: ${{ secrets.CLIENT_SECRET_MAVENNET }}
CLIENT_SECRET_MESURIO: ${{ secrets.CLIENT_SECRET_MESURIO }}
CLIENT_SECRET_GS1US: ${{ secrets.CLIENT_SECRET_GS1US }}
run: npm run test
continue-on-error: true
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: reports
token: ${{ secrets.GITHUB_TOKEN }}
- name: Report Github Pages Deployment Status
run: echo $deployment_status