Skip to content

feat: collect logs

feat: collect logs #68

Workflow file for this run

name: verify
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '18.x', '20.x', '21.x', '22.x' ]
name: Lint & Test Node.js ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: versions
run: |
node --version
npm --version
- run: npm ci
- name: lint
run: |
npm run lint
- name: test
run: |
npm test
verify-minimum-version-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '16.x' ]
name: Verify Minimum Version Check (Node.js ${{ matrix.node-version }})
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: versions
run: |
node --version
npm --version
- run: npm ci
- name: integration test
run: |
npm run test:integration