Skip to content

Commit ca85aa2

Browse files
committed
reduce wildcardiness of upload-artifact
There's a known issue with actions glob that keeps walking the tree directory tree even if the files are already excluded.
1 parent b6653ed commit ca85aa2

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

.github/workflows/pr-test.yml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -44,32 +44,32 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
node:
47-
- "18.19.0"
48-
- "18"
49-
- "20.6.0"
50-
- "20"
51-
- "22"
52-
- "24"
47+
- '18.19.0'
48+
- '18'
49+
- '20.6.0'
50+
- '20'
51+
- '22'
52+
- '24'
5353
include:
54-
- node: 18
55-
code-coverage: true
54+
- node: 18
55+
code-coverage: true
5656
runs-on: ubuntu-latest
5757
services:
5858
memcached:
5959
image: memcached:1.6.38-alpine
6060
ports:
61-
- 11211:11211
61+
- 11211:11211
6262
mongo:
6363
image: mongo
6464
ports:
65-
- 27017:27017
65+
- 27017:27017
6666
mssql:
6767
image: mcr.microsoft.com/mssql/server:2022-latest
6868
env:
6969
MSSQL_SA_PASSWORD: mssql_passw0rd
7070
ACCEPT_EULA: Y
7171
ports:
72-
- 1433:1433
72+
- 1433:1433
7373
options: >-
7474
--health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $MSSQL_SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
7575
--health-interval 1s
@@ -84,7 +84,7 @@ jobs:
8484
MYSQL_DATABASE: otel_mysql_database
8585
MYSQL_ROOT_PASSWORD: rootpw
8686
ports:
87-
- 3306:3306
87+
- 3306:3306
8888
options: >-
8989
--health-cmd="mysqladmin ping"
9090
--health-interval 10s
@@ -110,7 +110,7 @@ jobs:
110110
POSTGRES_DB: otel_pg_database
111111
POSTGRES_PASSWORD: postgres
112112
ports:
113-
- 5432:5432
113+
- 5432:5432
114114
options: >-
115115
--health-cmd pg_isready
116116
--health-interval 10s
@@ -119,7 +119,7 @@ jobs:
119119
redis:
120120
image: redis
121121
ports:
122-
- 6379:6379
122+
- 6379:6379
123123
options: >-
124124
--health-cmd "redis-cli ping"
125125
--health-interval 10s
@@ -128,11 +128,11 @@ jobs:
128128
cassandra:
129129
image: bitnami/cassandra:3
130130
ports:
131-
- 9042:9042
131+
- 9042:9042
132132
rabbitmq:
133133
image: rabbitmq:3
134134
ports:
135-
- 22221:5672
135+
- 22221:5672
136136
env:
137137
RABBITMQ_DEFAULT_USER: username
138138
RABBITMQ_DEFAULT_PASS: password
@@ -203,14 +203,15 @@ jobs:
203203
retention-days: 1
204204
path: |
205205
!node_modules
206-
**/.nyc_output/**
206+
packages/*/.nyc_output/**
207+
incubator/*/.nyc_output/**
207208
208209
browser-test:
209210
needs: compile
210211
strategy:
211212
fail-fast: false
212213
matrix:
213-
node: ["22"]
214+
node: ['22']
214215
runs-on: ubuntu-latest
215216
env:
216217
NPM_CONFIG_UNSAFE_PERM: true

0 commit comments

Comments
 (0)