From d45976794ed68ae7c5e0ec37a2f4bcd398e1f722 Mon Sep 17 00:00:00 2001 From: Sebastian Korfmann Date: Thu, 14 Sep 2023 22:03:07 +0200 Subject: [PATCH] Drop unused workflow for now --- .github/workflows/test.yml | 49 -------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 2d9a0fd..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: 'build-test' -on: # rebuild any PRs and main branch changes - pull_request: - push: - branches: - - main - - 'releases/*' - -jobs: - build: # make sure build/ci work properly - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - npm install - - run: | - npm run all - test: # make sure the action works on a clean machine without building - runs-on: ubuntu-latest - # env: # set the env vars for the action - # AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - # AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - # AWS_DEFAULT_REGION: 'us-east-1' - # TF_BACKEND_BUCKET: foo - # TF_BACKEND_BUCKET_REGION: 'us-east-1' - steps: - - uses: actions/checkout@v3 - # local testing only for now - # - uses: ./ - # name: "Plain Wing app" - # with: - # entry: './examples/plain/main.w' - # target: 'tf-aws' - # backend: 's3' - # - uses: ./ - # name: "Wing app with npm dependencies" - # with: - # entry: 'main.w' - # working-directory: 'examples/with-dependencies' - # target: 'tf-aws' - # backend: 's3' - # - uses: ./actions/deploy - # name: "Wing app with cdktf dependency" - # with: - # version: '0.21.4' - # entry: 'main.w' - # working-directory: 'examples/with-cdktf' - # target: 'tf-aws' - # backend: 's3' \ No newline at end of file