FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-cron/.github/workflows/nodejs.yml at main · node-cron/node-cron · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
node-cron
/
node-cron
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
283
Star
3.3k
Code
Issues
1
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node-cron
/
.github
/
workflows
/
nodejs.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
105 lines (79 loc) · 2.01 KB
Breadcrumbs
node-cron
/
.github
/
workflows
/
nodejs.yml
Copy path
File metadata and controls
105 lines (79 loc) · 2.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name
:
CI
on
:
push
:
branches
:
["*"]
pull_request
:
branches
:
[main]
jobs
:
lint
:
name
:
Static code analysis
runs-on
:
ubuntu-24.04-arm
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Use Node.js
uses
:
actions/setup-node@v4
with
:
node-version
:
"
22
"
-
name
:
Install dependencies
run
:
npm ci
-
name
:
Lint
run
:
node --run lint
build
:
name
:
Build and typecheck
runs-on
:
ubuntu-24.04-arm
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Use Node.js
uses
:
actions/setup-node@v4
with
:
node-version
:
"
22
"
-
name
:
Install dependencies
run
:
npm ci
-
name
:
Build
run
:
npm run build
-
name
:
Typecheck
run
:
npm run typecheck
unit
:
name
:
Unit tests
runs-on
:
ubuntu-24.04-arm
env
:
TZ
:
UTC
strategy
:
matrix
:
node-version
:
["20", "22", "24"]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Use Node.js ${{ matrix.node-version }}
uses
:
actions/setup-node@v4
with
:
node-version
:
${{ matrix.node-version }}
-
name
:
Install dependencies
run
:
npm ci
-
name
:
Run unit tests
run
:
npm test
-
name
:
Coveralls
if
:
matrix.node-version == '22'
uses
:
coverallsapp/github-action@master
with
:
github-token
:
${{ secrets.GITHUB_TOKEN }}
timezone-independence
:
name
:
Timezone independence
runs-on
:
ubuntu-24.04-arm
#
The suite must pass identically under a non-UTC, DST-observing system
#
timezone: a task uses its explicit timezone, never the system's.
env
:
TZ
:
America/Sao_Paulo
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Use Node.js
uses
:
actions/setup-node@v4
with
:
node-version
:
"
22
"
-
name
:
Install dependencies
run
:
npm ci
-
name
:
Run unit tests
run
:
npm test
Back
|
FazBrowse Home
|
New Git URL