Skip to content

Commit f8d939d

Browse files
committed
Correct workflow name
1 parent f04ff39 commit f8d939d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Lambda Scale Down Runners
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
paths:
8+
- .github/workflows/lambda-scale-down.yml
9+
- "modules/runners/lambdas/scale-down/**"
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
container: node:12
15+
defaults:
16+
run:
17+
working-directory: modules/runners/lambdas/scale-down
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Install dependencies
22+
run: yarn install
23+
- name: Build distribution
24+
run: yarn build

0 commit comments

Comments
 (0)