-
Notifications
You must be signed in to change notification settings - Fork 16
89 lines (67 loc) · 2.23 KB
/
Copy pathtest.yml
File metadata and controls
89 lines (67 loc) · 2.23 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Build and Test
on:
merge_group:
workflow_dispatch:
pull_request:
branches: [main, early-access]
push:
branches: [main, early-access]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
CACHE_KEY: "${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}"
jobs:
test:
strategy:
matrix:
node: [ 20, 22 ]
name: Build Package
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: Update npm
run: npm install -g npm@11.10.0
- name: Install dependencies
run: npm install
- name: Build auth0-auth-js
run: npm run build -w @auth0/auth0-auth-js
- name: Build auth0-server-js
run: npm run build -w @auth0/auth0-server-js
- name: Build @auth0/auth0-api-js
run: npm run build -w @auth0/auth0-api-js
- name: Test auth0-auth-js
run: npm run test:ci -w @auth0/auth0-auth-js
- name: Test auth0-server-js
run: npm run test:ci -w @auth0/auth0-server-js
- name: Test @auth0/auth0-api-js
run: npm run test:ci -w @auth0/auth0-api-js
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24
package-manager-cache: false
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm install
- name: Run @auth0/auth0-auth-js
run: npm run lint -w @auth0/auth0-auth-js
- name: Run @auth0/auth0-server-js
run: npm run lint -w @auth0/auth0-server-js
- name: Lint @auth0/auth0-api-js
run: npm run lint -w @auth0/auth0-api-js