Bump tar from 7.5.2 to 7.5.3 in /frontend #749
Workflow file for this run
This file contains hidden or 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
| name: Frontend Lint | |
| on: | |
| # Trigger the workflow on push or pull request, | |
| # but only for the base branch | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'frontend/**' | |
| - '.github/workflows/add-in.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'frontend/**' | |
| - '.github/workflows/add-in.yml' | |
| jobs: | |
| run-linters: | |
| name: Run linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| - run: npm install | |
| working-directory: ./frontend | |
| - run: npm run lint | |
| working-directory: ./frontend | |
| permissions: | |
| contents: write | |
| checks: write |