2023-02-14 15:52:21 +01:00
name : Lower null checks
on :
pull_request :
concurrency :
group : ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress : true
jobs :
build :
runs-on : ubuntu-latest
strategy :
matrix :
node-version : [ 16. x]
steps :
- name : Checkout current branch
uses : actions/checkout@v3
with :
path : current
- name : Checkout main branch
uses : actions/checkout@v3
with :
ref : main
path : main
- name : Use Node.js ${{ matrix.node-version }}
uses : actions/setup-node@v3
with :
node-version : ${{ matrix.node-version }}
cache : 'yarn'
cache-dependency-path : |
current/yarn.lock
main/yarn.lock
# intentionally use the same script from current branch against both repositories
2023-02-16 13:35:54 +01:00
- name : Compare errors if enabling strictNullChecks
run : |
set -x
sed -i 's/\/\/\s*"strictNullChecks":\s*true,/"strictNullChecks": true,/' "current/tsconfig.json"
sed -i 's/\/\/\s*"strictNullChecks":\s*true,/"strictNullChecks": true,/' "main/tsconfig.json"
yarn --mutex network --cwd ./current 2> .stderr-current > .out-current &
2023-02-14 15:52:21 +01:00
pid1=$!
2023-02-16 13:35:54 +01:00
yarn --mutex network --cwd ./main 2> .stderr-main > .out-main &
2023-02-14 15:52:21 +01:00
pid2=$!
2023-02-16 13:35:54 +01:00
# wait for the processes that are expected to fail
set +e
wait $pid1
wait $pid2
set -e
CURRENT=$(grep "Found [0-9]* errors" .out-current | sed 's/Found \(.*\) errors in .* files./\1/')
MAIN=$(grep "Found [0-9]* errors" .out-main | sed 's/Found \(.*\) errors in .* files./\1/')
2023-02-14 15:52:21 +01:00
if [ $CURRENT -gt $MAIN ]; then
2023-02-16 13:35:54 +01:00
diff .out-current .out-main
echo "The PR is increasing the number of null check errors from ${MAIN} to ${CURRENT}. Check if your branch is up-to-date and consider fixing them before merging. The diff above should give you some details"
2023-02-14 15:52:21 +01:00
exit 1
else
echo "The PR has $CURRENT null check errors against $MAIN in main. You're good to go!"
fi