-
Notifications
You must be signed in to change notification settings - Fork 253
74 lines (59 loc) · 1.6 KB
/
tests.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: CI
on: [push, pull_request]
jobs:
changes:
name: Check for changes
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Filter packages
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
packages:
- 'packages/*'
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20.x']
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install
# - name: Download Artifacts
# uses: actions/download-artifact@v4
# with:
# name: ${{ needs.changes.outputs.packages }}
# path: ${{ needs.changes.outputs.packages }}
# - run: ls -lah
# - name: Install build artifact
# run: yarn workspace ${{ needs.changes.outputs.packages }} add $(pwd)/package.tgz
- name: Run tests, against dist
run: yarn test
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20.x']
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
- name: Build
run: yarn build