Skip to content

Commit

Permalink
don't lint when publishing testing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-theriault-swi committed Mar 19, 2024
1 parent f5fb499 commit 73e1661
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- run: corepack enable

- run: yarn install --immutable
- run: yarn lint
- run: yarn publish
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
yarn install
yarn version:testing
yarn install
yarn lint:fix
- run: yarn publish

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lambda": "node scripts/lambda.js",
"lint": "prettier --check *.json *.md .github && turbo run lint --continue",
"lint:fix": "prettier --write *.json *.md .github && turbo run lint:fix --continue",
"publish": "turbo run build && turbo run lint && turbo run publish",
"publish": "turbo run build && turbo run publish",
"test": "turbo run test --continue",
"version:latest": "node scripts/version.js",
"version:prerelease": "node scripts/version.js pre",
Expand Down

0 comments on commit 73e1661

Please sign in to comment.