Skip to content

Update dependency @types/node to v20.17.1 #2641

Update dependency @types/node to v20.17.1

Update dependency @types/node to v20.17.1 #2641

name: git-push-service
on:
pull_request:
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
push:
branches:
- main
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
defaults:
run:
working-directory: git-push-service
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
- run: corepack enable pnpm
- run: pnpm i
- run: pnpm test
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
- run: corepack enable pnpm
- run: pnpm i
- run: pnpm build
- uses: ./git-push-service
with:
manifests: |
${{ github.workspace }}/git-push-service/tests/fixtures/a/generated.yaml
overlay: e2e-git-push-service
namespace: ns-${{ github.run_number }}
service: a
destination-repository: ${{ github.repository }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}
path: git-push-service/actual
- run: find actual -type f
- run: test -f actual/applications/ns-${{ github.run_number }}--a.yaml
- run: test -f actual/services/a/generated.yaml
- name: clean up the branch
continue-on-error: true
if: always()
run: |
git push origin --delete refs/heads/ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}