Skip to content

Upgrade glob to 10 and minimum Node version to 18 #418

Upgrade glob to 10 and minimum Node version to 18

Upgrade glob to 10 and minimum Node version to 18 #418

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
node-version:
- 18
- 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Lint and test
run: |
npm run lint
npm t