Skip to content

FDC3 For Web Browsers Implementation DON'T REVIEW YET #102

FDC3 For Web Browsers Implementation DON'T REVIEW YET

FDC3 For Web Browsers Implementation DON'T REVIEW YET #102

Workflow file for this run

name: Node.js CI Build and Test
# Controls when the workflow will run on any branch
on:
pull_request:
# Define the jobs for this workflow
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm run test
# Tests sometimes hang, and will run until stopped. Timeout to prevent all the minutes from being eaten.
timeout-minutes: 5