We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a437fe commit 2a23458Copy full SHA for 2a23458
.github/workflows/test.yml
@@ -11,22 +11,10 @@ jobs:
11
- name: Hente kode
12
uses: actions/checkout@v4
13
14
- - name: Setup .yarnrc.yml
15
- run: |
16
- yarn config set npmScopes.navikt.npmRegistryServer "https://npm.pkg.github.com"
17
- yarn config set npmScopes.navikt.npmAlwaysAuth true
18
- yarn config set npmScopes.navikt.npmAuthToken $NPM_AUTH_TOKEN
19
- env:
20
- NPM_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
21
-
22
- - name: Sette opp Node
23
- uses: actions/setup-node@v4
+ - name: Setup + Install
+ uses: ./.github/actions/setup-install
24
with:
25
- node-version: '18'
26
- cache: 'yarn'
27
28
- - name: Installere dependencies
29
- run: HUSKY=0 yarn install --immutable
+ npmAuthToken: ${{ secrets.READER_TOKEN }}
30
31
- name: Kjører tester
32
run: yarn test --silent
0 commit comments