Skip to content

Commit ff7b283

Browse files
committed
ci: setup
1 parent ac2d221 commit ff7b283

File tree

5 files changed

+40
-61
lines changed

5 files changed

+40
-61
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
with:
2121
tag_name: ${{ github.ref }}
2222
body: |
23-
Please refer to [CHANGELOG.md](https://github.com/posva/vuefire/blob/master/CHANGELOG.md) for details.
23+
Please refer to [CHANGELOG.md](https://github.com/vuejs/vuefire/blob/main/CHANGELOG.md) for details.

.github/workflows/size-limit.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: test
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'packages/docs/**'
7+
- 'packages/playground/**'
8+
pull_request:
9+
paths-ignore:
10+
- 'packages/docs/**'
11+
- 'packages/playground/**'
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: pnpm/[email protected]
20+
with:
21+
version: 7.12.2
22+
- uses: actions/setup-node@v2
23+
with:
24+
node-version: '16'
25+
cache: 'pnpm'
26+
27+
- name: Install
28+
run: pnpm install
29+
30+
- name: Lint
31+
run: pnpm run lint
32+
33+
- name: test
34+
run: pnpm run test
35+
36+
- name: Build
37+
run: pnpm run build
38+
39+
- uses: codecov/codecov-action@v2

0 commit comments

Comments
 (0)