Skip to content

Merge pull request #17 from mojolicious/dependabot/npm_and_yarn/eslin… #160

Merge pull request #17 from mojolicious/dependabot/npm_and_yarn/eslin…

Merge pull request #17 from mojolicious/dependabot/npm_and_yarn/eslin… #160

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run build
run: npm run build
- name: npm test
run: npm test