Bump the minor-and-patch group across 1 directory with 15 updates #1588
Workflow file for this run
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: Build check | |
on: [push] | |
jobs: | |
build: | |
name: Build application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Autentiser med GitHub NPM registry | |
run: | | |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.READER_TOKEN }}" >> ~/.npmrc | |
echo "@navikt:registry=https://npm.pkg.github.com" >> ~/.npmrc | |
- name: Install npm dependencies | |
run: npm install | |
- name: Build application | |
run: npm run build | |
env: | |
IMAGE_PROXY_URL: 'Test' | |
CDN_URL: 'Test' | |
RUNTIME_ENVIRONMENT: 'Test' | |
- name: Run linting | |
run: npm run lint |