Skip to content

Commit 3487fba

Browse files
committed
removed changed-files github action
1 parent ba096ab commit 3487fba

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

.changeset/smooth-books-behave.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"simplefrontend": patch
3+
---
4+
5+
removed changed files and republish

.github/workflows/quality-checks.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,14 @@ jobs:
2525
node-version: lts/*
2626
cache: "pnpm"
2727

28-
- name: Get changed files in source folder
29-
id: changed-files
30-
uses: tj-actions/changed-files@v45
31-
3228
- name: Install dependencies
3329
run: pnpm install
3430

3531
- name: Run code quality format check
36-
env:
37-
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
38-
run: pnpm exec prettier --check --ignore-unknown ${ALL_CHANGED_FILES}
32+
run: pnpm exec prettier --check --ignore-unknown src
3933

4034
- name: Run code quality lint check
41-
env:
42-
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
43-
run: pnpm exec eslint --no-warn-ignored ${ALL_CHANGED_FILES}
35+
run: pnpm exec eslint --no-warn-ignored src
4436

4537
- name: Run integration tests
4638
run: pnpm run test

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77

88
concurrency: ${{ github.workflow }}-${{ github.ref }}
99

10+
permissions:
11+
contents: write
12+
pull-requests: write
13+
1014
jobs:
1115
release:
1216
name: Release

0 commit comments

Comments
 (0)