-
Notifications
You must be signed in to change notification settings - Fork 29
41 lines (32 loc) · 998 Bytes
/
all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build and test the aws jslib against a Localstack instance
on:
# Enables running the workflow manually from the Actions tab
workflow_dispatch:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install npm packages
run: npm install
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- name: Install k6
run: go install go.k6.io/k6@latest
- name: Build the docker-compose stack
uses: hoverkraft-tech/[email protected]
with:
up-flags: "-d"
down-flags: "-v"
- name: Wait for the localstack scripts to have been applied
run: sleep 30
- name: Test
run: npm run test:ci