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
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,35 @@ name: Lint & build
on:
push:
branches: ["main"]
# Github Actions do not support YAML anchors yet,so we have to repeat
# the paths-ignore in both push and pull_request events.
# More info: https://github.com/actions/runner/issues/1182
paths-ignore:
- "public/**"
- ".husky/**"
- ".vscode/**"
- "*.html"
- ".nvmrc"
- ".prettierignore"
- ".prettierrc"
- "Dockerfile"
- "LICENSE"
- "nginx.conf.template"
- "README.md"
pull_request:
branches: ["main"]
paths-ignore:
- "public/**"
- ".husky/**"
- ".vscode/**"
- "*.html"
- ".nvmrc"
- ".prettierignore"
- ".prettierrc"
- "Dockerfile"
- "LICENSE"
- "nginx.conf.template"
- "README.md"

jobs:
build:
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"dont",
"hotspot",
"leaderboard",
"precommit",
"stylelint",
"tanstack",
"udemy",
"undismiss",
"zustand"
Expand Down
Loading