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

19 lines
238 B
YAML
Raw Normal View History

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: install
run: npm install
- name: test
run: npm run test-all