Merge branch 'add-algorithm-suites' into algo-ecdsa-jcs-2019 #597
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |