FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
danfojs/.github/workflows/node.js.yml at dev · javascriptdata/danfojs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
javascriptdata
/
danfojs
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
222
Star
5.1k
Code
Issues
71
Pull requests
30
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
danfojs
/
.github
/
workflows
/
node.js.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
27 lines (21 loc) · 682 Bytes
Breadcrumbs
danfojs
/
.github
/
workflows
/
node.js.yml
Copy path
File metadata and controls
27 lines (21 loc) · 682 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
#
This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
#
For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name
:
Node.js CI
on
:
push
:
branches
:
[ master, dev ]
pull_request
:
branches
:
[ master, dev ]
jobs
:
test
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
node-version
:
[18.x, 20.x]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Use Node.js ${{ matrix.node-version }}
uses
:
actions/setup-node@v1
with
:
node-version
:
${{ matrix.node-version }}
-
run
:
yarn test
Back
|
FazBrowse Home
|
New Git URL