Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
test push eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Vahor committed Aug 27, 2023
1 parent a89e4c3 commit e689338
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
- name: Install deps
run: pnpm install --child-concurrency 3 --frozen-lockfile --prefer-offline

- name: Create Release Pull Request
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"test": "NODE_ENV=test dotenv -- turbo run test",
"dev": "dotenv -- turbo run dev",
"lint": "SKIP_ENV_VALIDATION=true && turbo run lint",
"release": "turbo run publish",
"publish": "changeset publish",
"typecheck": "turbo run typecheck"
},
"keywords": [
Expand Down
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "index.js",
"author": "Nathan David <me@vahor.fr>",
"license": "MIT",
"private": "false",
"private": "true",
"devDependencies": {
"prettier-plugin-tailwindcss": "^0.5.3",
"@types/prettier": "^2.7.3",
Expand Down
7 changes: 7 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
"**/.env.*local"
],
"pipeline": {
"publish": {
"dependsOn": [
"build",
"lint",
"typecheck"
]
},
"build": {
"dependsOn": [
"^build"
Expand Down

0 comments on commit e689338

Please sign in to comment.