Skip to content

Commit

Permalink
ci(all): lint in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
serjilyashenko committed May 21, 2024
1 parent 2fdcc00 commit a19a4ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/homepage-legacy-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: npm ci

- name: Lint and test
run: echo "TBD" # FIXME: add linting and tests
run: npm run lint

- name: Build
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm ci

- name: Lint and test
run: echo "TBD" # FIXME: add linting and tests
run: npm run lint:packages

- name: Build
run: npm run build:packages
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"build": "turbo build",
"build:packages": "turbo build --filter='./packages/*'",
"lint": "turbo lint",
"lint:packages": "turbo lint --filter='./packages/*'",
"changeset": "npx changeset",
"release": "changeset publish",
"prettier": "prettier --write .",
Expand Down

0 comments on commit a19a4ea

Please sign in to comment.