chore: go-conditional-tests update GH deps (#1437) #1192
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: push-main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| ci-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo (needed to reference local action) | |
| uses: actions/checkout@v5 | |
| - name: ci-lint | |
| uses: ./actions/ci-lint-ts | |
| with: | |
| # general inputs | |
| checkout-repo: "false" | |
| pnpm-version: "^10.0.0" | |
| ci-prettier: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo (needed to reference local action) | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: ci-prettier | |
| uses: ./actions/ci-prettier | |
| with: | |
| # general inputs | |
| checkout-repo: "false" | |
| pnpm-version: "^10.0.0" | |
| ci-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo (needed to reference local action) | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: ci-test | |
| uses: ./actions/ci-test-ts | |
| with: | |
| # general inputs | |
| checkout-repo: "false" | |
| pnpm-version: "^10.0.0" | |
| cicd-build-publish-artifacts-dev: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| packages: write | |
| pull-requests: write | |
| issues: read | |
| actions: read | |
| steps: | |
| - name: Checkout repo (needed to reference local action) | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: cicd-build-publish-artifacts-dev | |
| uses: ./actions/cicd-build-publish-artifacts-ts | |
| with: | |
| checkout-repo: "false" | |
| pnpm-version: "^10.0.0" | |
| cd-release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout repo (needed to reference local action) | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: cd-release | |
| uses: ./actions/cicd-changesets | |
| with: | |
| # general inputs | |
| pnpm-version: "^10.0.0" | |
| git-user: app-token-issuer-releng-renovate[bot] | |
| git-email: app-token-issuer-releng-renovate[bot]@users.noreply.github.com | |
| # changesets inputs | |
| changesets-tag-separator: "/" | |
| changesets-major-version-tags: "true" | |
| # aws inputs | |
| aws-region: ${{ secrets.AWS_REGION }} | |
| aws-role-arn: ${{ secrets.AWS_OIDC_IAM_ROLE_ARN_GATI }} | |
| aws-lambda-url: ${{ secrets.AWS_LAMBDA_URL_GATI }} |