mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
chore(workflow) add
This commit is contained in:
parent
a493e5a4d1
commit
1ab5b189dc
1 changed files with 20 additions and 0 deletions
20
.github/workflows/nodejs.yml
vendored
Normal file
20
.github/workflows/nodejs.yml
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
name: Node CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Use Node.js 12.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
version: 12.x
|
||||
- name: npm install, build, and test
|
||||
run: |
|
||||
npm install
|
||||
npm run build
|
||||
npm test
|
||||
Loading…
Add table
Add a link
Reference in a new issue