Skip to content

Bump pug from 3.0.0 to 3.0.3 in /example/basic-pug #176

Bump pug from 3.0.0 to 3.0.3 in /example/basic-pug

Bump pug from 3.0.0 to 3.0.3 in /example/basic-pug #176

Workflow file for this run

name: node
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [ '20.x', '18.x', '16.x' ]
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test