ant-design/.github/workflows/nodejs.yml

20 lines
314 B
YAML
Raw Normal View History

2019-08-13 16:02:58 +08:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10.x
- name: npm install, build, and test
run: |
npm install
2019-08-14 16:02:41 +08:00
npm run test-all