Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Bump semver from 6.3.0 to 6.3.1 #137

Bump semver from 6.3.0 to 6.3.1

Bump semver from 6.3.0 to 6.3.1 #137

Workflow file for this run

name: Node.js CI
on: [ push ]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
node-version: [ 14.x, 16.x, 18.x, 20.x ]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm run build
- run: npm test
env:
CI: true