Fix test suite name in README. #92
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
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@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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@v3 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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 }} | |
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 |