We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74bd7a commit dc92a1bCopy full SHA for dc92a1b
.github/workflows/ci.yml
@@ -1,25 +1,23 @@
1
name: CI
2
3
on:
4
+ push:
5
+ branches:
6
+ - "*"
7
pull_request:
8
branches:
9
- main
- push:
- branches-ignore:
- - main
10
11
-# Cancel in-progress runs on new commits to same PR
12
-concurrency:
13
- group: ${{ github.workflow }}-${{ github.ref }}
14
- cancel-in-progress: true
+permissions:
+ contents: read
15
16
jobs:
17
- build-and-test:
+ ci:
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v3
21
22
- - uses: pnpm/action-setup@v4
+ - uses: pnpm/action-setup@v2
23
with:
24
version: 10.2.1
25
@@ -28,7 +26,7 @@ jobs:
28
26
node-version: 18
29
27
30
- name: Install dependencies
31
- run: pnpm install
+ run: pnpm install --frozen-lockfile
32
33
- name: Build
34
run: pnpm build:ci
.github/workflows/release.yml
0 commit comments