docs(release): design system packages #65
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: Continuous Deployment | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| continuous-integration: | |
| name: Continuous integration | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download code from GitHub | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install pnpm package manager | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 | |
| - name: Set up Node.js version | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Check for known security issues with npm packages | |
| run: | | |
| echo "Auditing npm dependencies before installing them. For more information, see: https://nldesignsystem.nl/pnpm-audit" | |
| pnpm audit --audit-level critical | |
| - name: Install dependencies specified in package.json | |
| run: | | |
| pnpm install --frozen-lockfile | |
| pnpm ls --recursive | |
| - name: Run the lint script in package.json scripts | |
| run: | | |
| pnpm run --if-present lint | |
| - name: Run the build script in package.json scripts | |
| env: | |
| GH_ISSUES_TOKEN: ${{ secrets.GH_ISSUES_TOKEN }} | |
| run: | | |
| pnpm run --if-present build | |
| - name: Run the test script in package.json scripts | |
| run: | | |
| pnpm run --if-present test |