-
-
Notifications
You must be signed in to change notification settings - Fork 17
41 lines (38 loc) · 997 Bytes
/
e2e-macOS.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
40
name: E2E-macOS
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test-e2e:
name: ${{ matrix.target_features }} with Nodejs v${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node_version:
- 20
os:
- macOS-latest
target_features:
- latest,webpack,babel
- latest,webpack,typescript
- latest,parcel,babel
- latest,parcel,typescript
- latest,dumber,babel
- latest,dumber,typescript
- latest,vite,babel
- latest,vite,typescript
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm run test:e2e
env:
TARGET_FEATURES: ${{ matrix.target_features }}