mirror of
https://github.com/ivabus/www
synced 2024-11-10 06:55:15 +03:00
test workflow
This commit is contained in:
parent
54d21009f6
commit
7119323f73
1
.github/workflows/staging.yml
vendored
1
.github/workflows/staging.yml
vendored
|
@ -6,6 +6,7 @@ concurrency:
|
|||
|
||||
env:
|
||||
TEA_SECRET: ${{ secrets.TEA_SECRET }}
|
||||
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
|
||||
|
||||
jobs:
|
||||
deploy_sls:
|
||||
|
|
|
@ -17,6 +17,9 @@ const serverlessConfiguration: AWS = {
|
|||
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1',
|
||||
NODE_OPTIONS: '--enable-source-maps --stack-trace-limit=1000',
|
||||
},
|
||||
iam: {
|
||||
deploymentRole: `arn:aws:iam::${process.env.AWS_ACCOUNT_ID || '640264234305'}:role/CloudFormationExecutionRole`
|
||||
}
|
||||
},
|
||||
// import the function via paths
|
||||
functions: { hello },
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
import schema from './schema';
|
||||
// import schema from './schema';
|
||||
import { handlerPath } from '@libs/handler-resolver';
|
||||
|
||||
export default {
|
||||
handler: `${handlerPath(__dirname)}/handler.main`,
|
||||
events: [
|
||||
{
|
||||
http: {
|
||||
httpApi: {
|
||||
method: 'post',
|
||||
path: 'hello',
|
||||
request: {
|
||||
schemas: {
|
||||
'application/json': schema,
|
||||
},
|
||||
},
|
||||
path: '/hello',
|
||||
// request: {
|
||||
// schemas: {
|
||||
// 'application/json': schema,
|
||||
// },
|
||||
// },
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue