Skip to content

Commit

Permalink
Merge pull request #204 from code-like-a-carpenter/restore-actions
Browse files Browse the repository at this point in the history
ci(github): add actions
  • Loading branch information
ianwremmel authored Jan 23, 2024
2 parents 8056531 + 88eb473 commit 7447659
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 11 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ jobs:
- uses: './.github/actions/setup'
- run: ./scripts/diff-lint

fixup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ianwremmel/[email protected]

lint:
needs: build
runs-on: ubuntu-latest
Expand Down Expand Up @@ -57,11 +65,21 @@ jobs:
label: TSC
report: 'reports/style/tsc.log'

nopush:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ianwremmel/[email protected]

release:
needs:
- build
- diff
- fixup
- lint
- nopush
- test-integration
- test-unit
runs-on: ubuntu-latest
Expand Down Expand Up @@ -98,8 +116,6 @@ jobs:
strategy:
fail-fast: false
matrix:
# There should be one node for each example, but at time of writing,
# two of the examples are disabled due to issues with localstack.
nodeCount: [5]
nodeIndex: [0, 1, 2, 3, 4]
steps:
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
"@opentelemetry/api": "1.4.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125"
"@types/aws-lambda": "^8.10.131"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"access": "public"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.129",
"@types/aws-lambda": "^8.10.131",
"openapi-typescript": "^6.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/@code-like-a-carpenter/telemetry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"snake-case": "^3.0.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.129"
"@types/aws-lambda": "^8.10.131"
}
}

0 comments on commit 7447659

Please sign in to comment.