Make intent colours with higher contrast #964
Workflow file for this run
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
| # This workflow will install dependencies, run tests and lint | |
| name: Run CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| tags: ['v*'] | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: ["22.20.0"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Set Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Audit packages, run Typescript tests and lint client code | |
| run: | | |
| pnpm audit --prod --audit-level high | |
| pnpm run lint | |
| pnpm run test | |
| pnpm build |