Bump @storybook/addon-actions from 6.4.9 to 8.4.3 #1694
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: Valider pull request | |
on: [pull_request] | |
jobs: | |
valid-pull-request: | |
name: Valider pull request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Hente kode | |
uses: actions/[email protected] | |
- name: Sette opp Node | |
uses: actions/[email protected] | |
with: | |
node-version: 17.x | |
registry-url: https://npm.pkg.github.com/ | |
scope: '@navikt' | |
cache: 'yarn' | |
- name: Installere dependencies | |
run: yarn install --ignore-optional --no-progress --frozen-lockfile | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }} | |
- name: Typescript and linting | |
run: yarn less:lint && yarn lint && yarn ts-check | |
- name: Run test and coverage | |
run: yarn test:coverage |