Remove typescript
(and optimistic-minting
) modules from the CI flow
#55
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: "Upstream Builds Query Action" | |
on: | |
pull_request: | |
paths: | |
- "actions/upstream-builds-query/**" | |
- ".github/workflows/upstream-builds-query.yml" | |
push: | |
branches: | |
- main | |
paths: | |
- "actions/upstream-builds-query/**" | |
- ".github/workflows/upstream-builds-query.yml" | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ./actions/upstream-builds-query | |
jobs: | |
upstream-builds-query-dist: | |
name: Verify committed dist directory | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "12" | |
- name: Calculate hash of committed `dist` directory | |
run: echo "COMMITTED_HASH=${{ hashFiles('./dist/**') }}" >> $GITHUB_ENV | |
- run: yarn install | |
- name: Calculate expected hash of `dist` directory | |
run: | | |
rm -rf dist && npm run prepare | |
echo "EXPECTED_HASH=${{ hashFiles('./dist/**') }}" >> $GITHUB_ENV | |
- name: Compare committed and expected hashes | |
run: | | |
echo "COMMITTED_HASH: ${{ env.COMMITTED_HASH }}" | |
echo "EXPECTED_HASH: ${{ env.EXPECTED_HASH }}" | |
export RESULT=$(expr "${{ env.COMMITTED_HASH }}" != "${{ env.EXPECTED_HASH }}") | |
echo "RESULT: $RESULT" | |
exit $RESULT | |
upstream-builds-query-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "12" | |
- run: yarn install | |
- run: yarn run test | |
upstream-builds-query-e2e-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./actions/upstream-builds-query | |
id: upstream-builds-query | |
with: | |
upstream-builds: | | |
[ | |
{ | |
"module": "github.com/keep-network/keep-core", | |
"ref": "", | |
"version": "wrong-version", | |
"url": "" | |
}, | |
{ | |
"module": "github.com/keep-network/keep-core/solidity", | |
"ref": "rfc-18/integration", | |
"version": "1.2.3-rc.0+feature.123sda", | |
"url": "https://github.com/keep-network/keep-core/actions/runs/770505797" | |
}, | |
{ | |
"module": "github.com/keep-network/keep-core", | |
"ref": "rfc-18/integration", | |
"version": "b454cc275c8d3d0e609639cd85244a099fa8ee69", | |
"url": "https://github.com/keep-network/keep-core/actions/runs/770692548" | |
} | |
] | |
query: | | |
keep-core-contracts-version = github.com/keep-network/keep-core/solidity#version | |
keep-core-version = github.com/keep-network/keep-core#version | |
# Verify outputs of the previous step. | |
- name: Validate `keep-core-contracts-version` | |
run: exit $(expr "${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}" != "1.2.3-rc.0+feature.123sda") | |
- name: Validate `keep-core-version` | |
run: exit $(expr "${{ steps.upstream-builds-query.outputs.keep-core-version }}" != "b454cc275c8d3d0e609639cd85244a099fa8ee69") |