[SC-989][SC-990] Solidity 0.8.23, OZ 5.0.0 #14
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: PR | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check-package-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install -g yarn | |
- run: yarn global add semver-compare-cli | |
- run: export PATH="$PATH:$(yarn global bin)" | |
- name: Get local package version | |
run: echo "::set-output name=CURRENT_PACKAGE_VERISION::$(node -p 'require(`./package.json`).version')" | |
id: current-package-version | |
- name: Get remote package version | |
run: echo "::set-output name=REMOTE_PACKAGE_VERISION::$(npm view @1inch/calldata-compressor version)" | |
id: remote-package-version | |
- name: Check Version | |
run: semver-compare ${{ steps.current-package-version.outputs.CURRENT_PACKAGE_VERISION }} gt ${{ steps.remote-package-version.outputs.REMOTE_PACKAGE_VERISION }} |