Skip to content

Commit

Permalink
Ensure GH workflow is run on push and PR (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
oleiade authored Nov 17, 2023
1 parent 6bf3253 commit 7a52e6d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 35 deletions.
48 changes: 29 additions & 19 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
name: Build and test the aws jslib against a Localstack instance
on: push
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@v2
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.x

- name: Install k6
run: go install go.k6.io/k6@latest
- name: Install k6
run: go install go.k6.io/k6@latest

- name: Build the stack
run: docker-compose up -d
- name: Build the stack
run: docker-compose up -d

- name: Wait for the localstack scripts to have been applied
run: sleep 30
- name: Wait for the localstack scripts to have been applied
run: sleep 30

- name: Install npm packages
run: npm install
- name: Install npm packages
run: npm install

- name: Test
run: npm run webpack && npm run ci-test
- name: Test
run: npm run webpack && npm run ci-test
32 changes: 16 additions & 16 deletions package-lock.json

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

0 comments on commit 7a52e6d

Please sign in to comment.