Skip to content

♻️ Use an action to simplify the workflow #19

♻️ Use an action to simplify the workflow

♻️ Use an action to simplify the workflow #19

Workflow file for this run

name: CI
on: ['push', 'pull_request']
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
experimental: [false]
runtime: [node, deno, bun]
version: ["latest"]
pm: [npm, pnpm, yarn]
exclude:
- runtime: bun
pm: pnpm
- runtime: bun
pm: yarn
- runtime: deno
pm: pnpm
- runtime: deno
pm: yarn
name: 👷 Panam CI on ${{ matrix.runtime }}-${{ matrix.version }} under ${{ matrix.os }} using ${{ matrix.pm }}
timeout-minutes: 60
steps:
- name: 🚚 Checkout repository
uses: actions/checkout@v4
- name: Setup Test Environment
uses: ./.github/actions/setup-environment
with:
runtime: ${{ matrix.runtime }}
version: ${{ matrix.version }}
package_manager: ${{ matrix.pm }}