Skip to content

Bump typescript from 5.0.4 to 5.2.2 #86

Bump typescript from 5.0.4 to 5.2.2

Bump typescript from 5.0.4 to 5.2.2 #86

Workflow file for this run

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'