FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feathers/.github/workflows/nodejs.yml at eagle · feathersjs/feathers · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feathersjs
/
feathers
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
797
Star
15.3k
Code
Issues
108
Pull requests
18
Discussions
Actions
Security and quality
8
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feathers
/
.github
/
workflows
/
nodejs.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
39 lines (34 loc) · 840 Bytes
Breadcrumbs
feathers
/
.github
/
workflows
/
nodejs.yml
Copy path
File metadata and controls
39 lines (34 loc) · 840 Bytes
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
name
:
CI
on
:
[push, pull_request]
jobs
:
build
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
node-version
:
[22.x, 24.x]
services
:
postgres
:
image
:
postgres:latest
env
:
POSTGRES_DB
:
feathers
POSTGRES_PASSWORD
:
postgres
POSTGRES_PORT
:
5432
POSTGRES_USER
:
postgres
ports
:
-
5432:5432
options
:
>-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Use Node.js ${{ matrix.node-version }}
uses
:
actions/setup-node@v1
with
:
node-version
:
${{ matrix.node-version }}
-
run
:
npm install
-
run
:
npm test
env
:
CI
:
true
TEST_DB
:
postgres
Back
|
FazBrowse Home
|
New Git URL