Upgrade setup-node workflow and specify node v12.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 19 Sep 2020 20:30:29 +0000 (16:30 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 19 Sep 2020 20:30:29 +0000 (16:30 -0400)
.github/workflows/ci.yml
build.sh

index 31e23badf72f700aeb085e09e0cf8deab631f400..5e2cb9b4a564fb4264ed805ceecf47ba298f42d5 100644 (file)
@@ -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
index 8d7d25402616003735263157947b7b2525a9c9bb..45f228ad2396d06e5e1b218ae18f04db8713b95c 100755 (executable)
--- 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.