Skip to content

Bump ip-address from 10.1.0 to 10.2.0 #37

Bump ip-address from 10.1.0 to 10.2.0

Bump ip-address from 10.1.0 to 10.2.0 #37

Workflow file for this run

# Copyright (c) 2023, Ayogo Health Inc. All rights reserved. Confidential.
name: PR Verification
on:
pull_request:
branches: ["*"]
types: [synchronize, opened, reopened, ready_for_review]
jobs:
test:
name: Test ${{ matrix.test.browser }}
runs-on: ${{ matrix.test.os }}
timeout-minutes: 5
strategy:
matrix:
test:
- { os: ubuntu-latest, browser: chrome }
- { os: ubuntu-latest, browser: firefox }
- { os: macos-latest, browser: safari }
- { os: windows-latest, browser: edge }
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "24.15" # 24.16 breaks Chrome tests
#node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm test -- --browser=${{ matrix.test.browser }}