Update scripts to use PULL_REQUEST_ID

This commit is contained in:
Owen Voke
2020-06-24 13:11:33 +01:00
committed by Marco Bonelli
parent 81d346f006
commit 5e958f6074
4 changed files with 7 additions and 3 deletions

View File

@@ -13,6 +13,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Set up PR environment
if: github.event.number != null
run: echo "::set-env name=PULL_REQUEST_ID::${{ github.event.number }}"
- name: Install npm dependencies
run: npm ci