Skip to content

Commit

Permalink
github: Update integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tmc committed Jul 2, 2022
1 parent b647ad2 commit 14bbb18
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-federation
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd _examples/federation

./start.sh &

sleep 10
sleep 12

echo "### running jest integration spec"
./node_modules/.bin/jest --color
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-integration
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd integration

go run ./server/server.go &

sleep 2
sleep 5

echo "### running jest integration spec"
./node_modules/.bin/jest --color
Expand Down
33 changes: 24 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,50 @@
name: Integration
on: [push, pull_request]

env:
GO_VERSION: 1.16

jobs:
integration:
strategy:
matrix:
go: [1.16, 1.17, 1.18]
runs-on: ubuntu-latest
timeout-minutes: 3
container: golang:${{ env.GO_VERSION }}-alpine
steps:
- uses: actions/checkout@v3
- run: apk add --no-cache --no-progress nodejs npm git bash
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/setup-node@v3
with:
node-version: 14
- run: go mod download
- run: cd integration ; npm install
- run: .github/workflows/check-integration

federation:
strategy:
matrix:
go: [1.16, 1.17, 1.18]
runs-on: ubuntu-latest
container: golang:${{ env.GO_VERSION }}-alpine
steps:
- uses: actions/checkout@v3
- run: apk add --no-cache --no-progress nodejs npm git bash
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/setup-node@v3
with:
node-version: 14
- run: go mod download
- run: cd _examples/federation ; npm install
- run: .github/workflows/check-federation

init:
strategy:
matrix:
go: [1.16, 1.17, 1.18]
runs-on: ubuntu-latest
container: golang:${{ env.GO_VERSION }}-alpine
steps:
- uses: actions/checkout@v3
- run: apk add --no-cache --no-progress alpine-sdk bash
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: .github/workflows/check-init
3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Lint
on: [push, pull_request]

env:
GO_VERSION: 1.16

jobs:
lint:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Security
on: [push, pull_request]

env:
GO_VERSION: 1.16

jobs:
nancy:
strategy:
matrix:
go: [1.16, 1.17, 1.18]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
go-version: ${{ matrix.go }}
- run: go mod download && go list -json -deps all > go.list
- uses: sonatype-nexus-community/nancy-github-action@main

0 comments on commit 14bbb18

Please sign in to comment.