mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-20 18:18:56 +00:00
feature(docker) add support of multi-arch builds (#291)
This commit is contained in:
parent
11cc63adcd
commit
99b93e760a
8 changed files with 104 additions and 255 deletions
50
.github/workflows/nodejs.yml
vendored
50
.github/workflows/nodejs.yml
vendored
|
|
@ -4,34 +4,32 @@ on: [push]
|
|||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Use Node.js 14.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 14.x
|
||||
|
||||
- name: install
|
||||
run: |
|
||||
npm install
|
||||
|
||||
- name: lint
|
||||
run: |
|
||||
npm run lint
|
||||
|
||||
- name: build
|
||||
run: |
|
||||
npm run build
|
||||
npm test
|
||||
|
||||
- name: test
|
||||
run: |
|
||||
npm test
|
||||
- uses: actions/checkout@master
|
||||
- name: Use Node.js 14.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 14.x
|
||||
|
||||
- name: coverage
|
||||
run: |
|
||||
npm run coverage
|
||||
- name: install
|
||||
run: |
|
||||
npm install
|
||||
|
||||
- name: lint
|
||||
run: |
|
||||
npm run lint
|
||||
|
||||
- name: build
|
||||
run: |
|
||||
npm run build
|
||||
npm test
|
||||
|
||||
- name: test
|
||||
run: |
|
||||
npm test
|
||||
|
||||
- name: coverage
|
||||
run: |
|
||||
npm run coverage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue