Skip to content

Change repository url protocol to "git+https" in package.json #56

Change repository url protocol to "git+https" in package.json

Change repository url protocol to "git+https" in package.json #56

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
test:
name: Node ${{matrix.node}} on ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 24.x ]
runs-on: ${{matrix.os}}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js ${{matrix.node}}
uses: actions/setup-node@v5
with:
node-version: ${{matrix.node}}
- name: Install npm dependencies
run: npm install
- name: Test
run: npm test