mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-25 22:02:57 +08:00
19 lines
320 B
YAML
19 lines
320 B
YAML
name: Node CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
- run: yarn
|
|
- run: npm run lint
|
|
- run: npm test
|
|
- run: cat ./test/coverage/lcov.info | ./node_modules/.bin/codecov
|