Skip to content

Commit 40d883d

Browse files
jotoloposva
andauthored
ci: fix indent and branch names (#2883)
Co-authored-by: Eduardo San Martin Morote <[email protected]>
1 parent d405029 commit 40d883d

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'packages/docs/**'
77
- 'packages/playground/**'
88
pull_request:
9-
branches: v2
9+
branches: [v2]
1010
paths-ignore:
1111
- 'packages/docs/**'
1212
- 'packages/playground/**'

.github/workflows/pkg.pr.new.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,40 @@ name: Publish Any Commit
22

33
on:
44
pull_request:
5-
branches: v2
5+
branches: [v2]
66
paths-ignore:
7-
- 'packages/docs/**'
8-
- 'packages/playground/**'
7+
- 'packages/docs/**'
8+
- 'packages/playground/**'
99

1010
push:
1111
branches:
12-
- '**'
12+
- '**'
1313
tags:
14-
- '!**'
14+
- '!**'
1515
paths-ignore:
16-
- 'packages/docs/**'
17-
- 'packages/playground/**'
16+
- 'packages/docs/**'
17+
- 'packages/playground/**'
1818

1919
jobs:
2020
build:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- name: Checkout code
25-
uses: actions/checkout@v4
26-
with:
27-
fetch-depth: 0
28-
- uses: pnpm/action-setup@v4
29-
- uses: actions/setup-node@v4
30-
with:
31-
node-version: lts/*
32-
cache: pnpm
24+
- name: Checkout code
25+
uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0
28+
- uses: pnpm/action-setup@v4
29+
- uses: actions/setup-node@v4
30+
with:
31+
node-version: lts/*
32+
cache: pnpm
3333

34-
- name: Install
35-
run: pnpm install --frozen-lockfile
34+
- name: Install
35+
run: pnpm install --frozen-lockfile
3636

37-
- name: Build
38-
run: pnpm build
37+
- name: Build
38+
run: pnpm build
3939

40-
- name: Release
41-
run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'
40+
- name: Release
41+
run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'

0 commit comments

Comments
 (0)