1
mirror of https://github.com/jakejarvis/careful-downloader.git synced 2025-04-26 16:58:25 -04:00

39 lines
771 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- 20
- 18
- 16
- 14
fail-fast: false
runs-on: ${{ matrix.os }}
name: Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --frozen-lockfile
- run: yarn audit
continue-on-error: true
- run: yarn test
env:
DEBUG: careful-downloader
DEBUG_HIDE_DATE: 1
DEBUG_COLORS: 0