Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
PNPM_CACHE_FOLDER: .pnpm-store
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CI: true

jobs:
publish-or-pr:
Expand Down Expand Up @@ -42,13 +43,13 @@ jobs:
- run: pnpm exec playwright install

- uses: nrwl/nx-set-shas@v4
with:
main-branch-name: main

- run: git branch --track main origin/main

- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER

- run: pnpm exec nx affected -t build lint test e2e
- run: pnpm exec nx affected -t build lint test e2e-ci

- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
Expand Down
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "nx affected --target=build",
"changeset": "changeset",
"ci:release": "pnpm publish -r --no-git-checks && changeset tag",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm nx format:write",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm nx format:write --uncommitted",
"circular-dep-check": "madge --circular .",
"clean": "shx rm -rf ./{coverage,dist,docs,node_modules,tmp}/ ./{packages,e2e}/*/{dist,node_modules}/ && git clean -fX -e \"!.env*,nx-cloud.env\"",
"commit": "git cz",
Expand Down Expand Up @@ -104,7 +104,6 @@
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^15.0.0",
"madge": "8.0.0",
"npm-cli-login": "^1.0.0",
"nx": "20.5.0",
"playwright": "^1.47.2",
"prettier": "^3.2.5",
Expand All @@ -119,10 +118,6 @@
"typescript-eslint": "^8.19.0",
"verdaccio": "6.1.2",
"vite": "6.2.6",
"vite-plugin-dts": "4.5.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "3.0.5",
"vitest-canvas-mock": "^0.3.3"
},
Expand Down
Loading
Loading