Skip to content

Bump minimist from 1.2.5 to 1.2.8 #109

Bump minimist from 1.2.5 to 1.2.8

Bump minimist from 1.2.5 to 1.2.8 #109

Workflow file for this run

name: Continuous Integration Windows
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- windows-latest
node: [18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build