-
Notifications
You must be signed in to change notification settings - Fork 3
25 lines (23 loc) · 939 Bytes
/
cpv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 }}