From 15d8995d4ba7c5286a5668fbf950278808168019 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Wed, 18 Aug 2021 16:58:49 +0200 Subject: [PATCH] Checkout the repository before setting up node see 464224a153f2d140551726128e0a5ad10d022ed0 --- .github/workflows/typescript.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 2b352b57f8..eca73057ff 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -14,12 +14,12 @@ jobs: strategy: fail-fast: false steps: + - uses: actions/checkout@v2 - name: Set up node.js uses: actions/setup-node@v2 with: node-version: "14" cache: "npm" - - uses: actions/checkout@v2 - run: npm install - run: npx tsc --noEmit - name: Check that tslib is in sync. @@ -30,12 +30,12 @@ jobs: strategy: fail-fast: false steps: + - uses: actions/checkout@v2 - name: Set up node.js uses: actions/setup-node@v2 with: node-version: "14" cache: "npm" - - uses: actions/checkout@v2 - run: npm install - run: npx eslint . javascript_sync: @@ -45,12 +45,12 @@ jobs: strategy: fail-fast: false steps: + - uses: actions/checkout@v2 - name: Set up node.js uses: actions/setup-node@v2 with: node-version: "14" cache: "npm" - - uses: actions/checkout@v2 - run: npm install - run: npx tsc - run: echo "::add-matcher::.github/diff.json" -- 2.20.1