Turkish translation errors fixed #179
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow lints the code in /Website, if any was committed | |
name: Website Lint | |
on: | |
push: | |
branches: [main] | |
paths: | |
- Website/** | |
pull_request: | |
branches: [main] | |
paths: | |
- Website/** | |
jobs: | |
weblint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- run: npm install | |
working-directory: Website | |
- run: npm run lint | |
working-directory: Website |