Skip to content

Bump eslint-webpack-plugin from 4.0.1 to 4.1.0 #202

Bump eslint-webpack-plugin from 4.0.1 to 4.1.0

Bump eslint-webpack-plugin from 4.0.1 to 4.1.0 #202

Workflow file for this run

name: Build PR
on:
push:
branches-ignore:
- main
env:
BASE_PATH: /familie/barnetrygd/soknad/
jobs:
test:
name: Kjør typecheck og tester
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: "https://npm.pkg.github.com"
- name: Installer node-pakker
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn --prefer-offline --frozen-lockfile
- name: Kjør typecheck
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn typecheck
- name: Kjør prettier og eslint
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn lint-test
- name: Kjør tester
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn test
bygg:
name: Bygg app
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://npm.pkg.github.com"
- name: Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_RELEASE: ${{ github.sha }}
BASE_PATH: ${{ env.BASE_PATH }}
run: |
yarn --prefer-offline --frozen-lockfile
yarn build