From 874cdb62465fa7944bb6720b9fa82b19f8bdc6c4 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 19 Sep 2020 16:30:29 -0400 Subject: [PATCH] Upgrade setup-node workflow and specify node v12. --- .github/workflows/ci.yml | 4 +++- build.sh | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31e23ba..5e2cb9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1.1.0 + - uses: actions/setup-node@v1.4.3 + with: + node-version: '12' - run: npm install - run: ./build.sh - run: npm test diff --git a/build.sh b/build.sh index 8d7d254..45f228a 100755 --- a/build.sh +++ b/build.sh @@ -12,6 +12,7 @@ set -ex rm -rf $OUTDIR # Compile. +tsc --version tsc # Drop tests from the compiled output. -- 2.22.5