Bump vitest from 2.1.4 to 2.1.5 #527
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
name: Bygg og lint | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
build-and-lint: | |
name: Bygg og lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install npm dependencies | |
run: npm ci | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: npm run prettier:check | |
- run: npm run lint | |
- run: npm run build-stale-pull-request | |
- run: npm run build-dependabot-alerts | |
- run: npm run build-gamle-trello-kort | |
- run: npm run build-prodansvar | |
- run: npm run build-sjekk-prodansvar | |
- run: npm run build-flexjaransvar | |
- run: npm run build-code-ql | |
- run: npm run build-retroansvar |