mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
19 lines
238 B
YAML
19 lines
238 B
YAML
|
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
|