input tokens #27903
This file contains hidden or 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: Verify | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!**--skip-ci' | |
| - '!**--visual-reports' | |
| - '!wip/**' | |
| - '!experiments/**' | |
| pull_request: | |
| branches: | |
| - 'portal' | |
| - 'release' | |
| - 'beta' | |
| - 'alpha' | |
| - 'next' | |
| types: [opened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| GH_EMAIL: ${{ secrets.GH_EMAIL }} | |
| GH_NAME: ${{ secrets.GH_NAME }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }} | |
| FIGMA_ICONS_FILE: ${{ secrets.FIGMA_ICONS_FILE }} | |
| jobs: | |
| verify: | |
| name: Run tests and checks | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 | |
| with: | |
| node-version-file: 'package.json' | |
| - name: Use node_modules cache | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 | |
| id: modules-cache | |
| with: | |
| path: node_modules | |
| key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-modules- | |
| - name: Install dependencies | |
| if: steps.modules-cache.outputs.cache-hit != 'true' | |
| run: yarn install --immutable | |
| - name: Audit dependencies | |
| if: ${{ !contains(github.event.head_commit.message || '', '--skip-audit') && !(github.event.pull_request && contains(github.event.pull_request.title || '', '--skip-audit')) }} | |
| run: yarn workspace @dnb/eufemia audit:ci | |
| - name: Run lint | |
| run: | | |
| yarn workspace @dnb/eufemia lint:ci | |
| yarn workspace dnb-design-system-portal lint:ci | |
| - name: Run type checks | |
| run: | | |
| yarn workspace @dnb/eufemia test:types | |
| yarn workspace dnb-design-system-portal test:types | |
| yarn workspace eufemia-llm-metadata test:types | |
| - name: Run tests | |
| run: | | |
| yarn workspace @dnb/eufemia test:ci | |
| yarn workspace dnb-design-system-portal test:ci | |
| yarn workspace markdown-tables-utils test | |
| yarn workspace eufemia-llm-metadata test | |
| - name: Run dependency checks | |
| run: yarn workspace @dnb/eufemia test:deps | |
| build-check: | |
| name: Run build tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout (with fetch-depth) | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 20 # The "postbuild:ci" method "getCommittedFiles" needs all history | |
| - name: Use Node.js | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 | |
| with: | |
| node-version-file: 'package.json' | |
| - name: Use node_modules cache | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 | |
| id: modules-cache | |
| with: | |
| path: node_modules | |
| key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-modules- | |
| - name: Install dependencies | |
| if: steps.modules-cache.outputs.cache-hit != 'true' | |
| run: yarn install --immutable | |
| - name: Verify isCI | |
| run: yarn workspace repo-utils test:ci | |
| - name: Prebuild Library | |
| run: yarn workspace @dnb/eufemia prebuild:ci | |
| - name: Postbuild Library | |
| run: yarn workspace @dnb/eufemia postbuild:ci |