build(deps): bump the github-actions group across 1 directory with 3 updates #211
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.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 |