build(deps-dev): bump jsdom from 29.1.1 to 30.0.1 in /frontend #214
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
| name: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test-operator: | |
| name: Test operator | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 | |
| with: | |
| go-version-file: operator/go.mod | |
| cache-dependency-path: operator/go.sum | |
| - name: Run tests | |
| working-directory: operator | |
| run: make test | |
| test-key-manager: | |
| name: Test key-manager | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 | |
| with: | |
| go-version-file: key-manager/go.mod | |
| cache-dependency-path: key-manager/go.sum | |
| - name: Run tests | |
| working-directory: key-manager | |
| run: go test ./... | |
| test-frontend: | |
| name: Test frontend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: frontend/.node-version | |
| cache: npm | |
| cache-dependency-path: frontend/package-lock.json | |
| - name: Install deps | |
| working-directory: frontend | |
| run: npm ci | |
| - name: Run tests | |
| working-directory: frontend | |
| run: npm test |