Skip to content

Bump semver from 7.3.8 to 7.5.4 #43

Bump semver from 7.3.8 to 7.5.4

Bump semver from 7.3.8 to 7.5.4 #43

Workflow file for this run

name: Build and Test
on:
pull_request:
push:
branches:
- master
- releases/*
jobs:
build:
name: 'Build and test job'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- name: 'Checkout the code'
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install nodejs
uses: actions/setup-node@v3
with:
node-version: 16
- name: 'Validate Build'
run: |
npm install
npm run build
- name: 'Test Build'
run: |
npm test --if-exists