Skip to content

Commit dc92a1b

Browse files
committed
only have a ci job that runs on all branches and all prs.
1 parent f74bd7a commit dc92a1b

File tree

2 files changed

+8
-47
lines changed

2 files changed

+8
-47
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
name: CI
22

33
on:
4+
push:
5+
branches:
6+
- "*"
47
pull_request:
58
branches:
69
- main
7-
push:
8-
branches-ignore:
9-
- main
1010

11-
# Cancel in-progress runs on new commits to same PR
12-
concurrency:
13-
group: ${{ github.workflow }}-${{ github.ref }}
14-
cancel-in-progress: true
11+
permissions:
12+
contents: read
1513

1614
jobs:
17-
build-and-test:
15+
ci:
1816
runs-on: ubuntu-latest
1917
steps:
2018
- uses: actions/checkout@v3
2119

22-
- uses: pnpm/action-setup@v4
20+
- uses: pnpm/action-setup@v2
2321
with:
2422
version: 10.2.1
2523

@@ -28,7 +26,7 @@ jobs:
2826
node-version: 18
2927

3028
- name: Install dependencies
31-
run: pnpm install
29+
run: pnpm install --frozen-lockfile
3230

3331
- name: Build
3432
run: pnpm build:ci

.github/workflows/release.yml

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

0 commit comments

Comments
 (0)