This repository has been archived by the owner on May 20, 2024. It is now read-only.
Bump debug in /integration #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: [push, pull_request] | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
container: golang:1.13-alpine | |
steps: | |
- uses: actions/checkout@v1 | |
- run: apk add --no-cache --no-progress nodejs npm git bash | |
- run: go mod download | |
- run: cd integration ; npm install | |
- run: .github/workflows/check-integration | |
federation: | |
runs-on: ubuntu-latest | |
container: golang:1.13-alpine | |
steps: | |
- uses: actions/checkout@v1 | |
- run: apk add --no-cache --no-progress nodejs npm git bash | |
- run: go mod download | |
- run: cd example/federation ; npm install | |
- run: .github/workflows/check-federation |