ref(s4s2): Switch s4s and s4s2 places in pipedream #229
Workflow file for this run
This file contains hidden or 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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Get the code | |
| - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
| # Install dependencies | |
| - name: Install NPM Deps | |
| run: npm install | |
| - name: Install go | |
| uses: actions/setup-go@v4 | |
| - name: Install Jsonnet | |
| run: | | |
| go install github.com/google/go-jsonnet/cmd/jsonnet@latest | |
| go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest | |
| go install github.com/google/go-jsonnet/cmd/jsonnet-lint@latest | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test | |
| - uses: getsentry/action-gocd-jsonnet@v1 | |
| with: | |
| jb-install: true | |
| check-for-changes: false | |
| jsonnet-dir: . | |
| generated-dir: ./generated-pipelines | |
| render-jsonnet-files: false |