🦺 Check if the tool is installed before run any command #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: ['push', 'pull_request'] | |
jobs: | |
monorepo: | |
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] | |
name: 👷 Panam Monorepo ${{ matrix.pm }} on ${{ matrix.runtime }} under ${{ matrix.os }} | |
timeout-minutes: 60 | |
steps: | |
- name: 🚚 Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Test Environment | |
uses: siguici/setup-js@v1 | |
with: | |
rutime: ${{ matrix.runtime }} | |
scripts: build,test |