Skip to content

Commit 876bc2a

Browse files
committed
chore: Debug CI
1 parent bb23376 commit 876bc2a

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
permissions:
15-
contents: read
16-
# security-events: write # Required for uploading SARIF files
15+
contents: none
16+
security-events: none # Required for uploading SARIF files
1717

1818
jobs:
1919
build-and-test:
@@ -30,21 +30,21 @@ jobs:
3030
run: npm ci
3131
- name: Build
3232
run: npm run build
33-
- name: Check storage layout
34-
run: npm run check-storage-layout
35-
- name: Test deployment
36-
run: npm run deploy
37-
- name: Test Timelock deployment
38-
run: npm run deploy:timelock
39-
- name: Run coverage
40-
run: npm run coverage
41-
- name: Run partial native tests
42-
run: npm run test:native
43-
- name: Upload coverage reports to Codecov
44-
uses: codecov/[email protected]
45-
with:
46-
token: ${{ secrets.CODECOV_TOKEN }}
47-
slug: iExecBlockchainComputing/PoCo
33+
# - name: Check storage layout
34+
# run: npm run check-storage-layout
35+
# - name: Test deployment
36+
# run: npm run deploy
37+
# - name: Test Timelock deployment
38+
# run: npm run deploy:timelock
39+
# - name: Run coverage
40+
# run: npm run coverage
41+
# - name: Run partial native tests
42+
# run: npm run test:native
43+
# - name: Upload coverage reports to Codecov
44+
# uses: codecov/[email protected]
45+
# with:
46+
# token: ${{ secrets.CODECOV_TOKEN }}
47+
# slug: iExecBlockchainComputing/PoCo
4848
- name: Run static analysis with Slither
4949
uses: crytic/[email protected]
5050
with:

.github/workflows/publish.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,20 @@ on:
66
tags:
77
- 'v*'
88

9-
permissions:
10-
id-token: write # Required for OIDC
11-
packages: write
12-
contents: read
13-
security-events: write # Required for uploading SARIF files
9+
# permissions:
10+
# id-token: write # Required for OIDC
11+
# packages: write
12+
# contents: read
13+
# security-events: write # Required for uploading SARIF files
1414

1515
jobs:
1616
build-and-test:
1717
uses: ./.github/workflows/main.yml
1818

1919
publish:
2020
needs: build-and-test
21+
permissions:
22+
id-token: write # Required for OIDC
23+
packages: write
24+
contents: read
2125
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]

0 commit comments

Comments
 (0)