Bump @typescript-eslint/eslint-plugin from 4.15.2 to 8.15.0 #568
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: Bygg branch eller PR | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| kompiler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Sjekk ut kode | |
| uses: actions/[email protected] | |
| - name: Cache node modules | |
| uses: actions/[email protected] | |
| with: | |
| path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-${{ env.cache-name }}- | |
| ${{ runner.os }}-build- | |
| ${{ runner.os }}- | |
| - run: npm install | |
| - run: npm run jest | |
| - run: npm run build | |