-
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 1023 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 }}