diff --git a/sdks/typescript/.github/workflows/test.yml b/sdks/typescript/.github/workflows/test.yml index edb5d564d..de88e583b 100644 --- a/sdks/typescript/.github/workflows/test.yml +++ b/sdks/typescript/.github/workflows/test.yml @@ -9,25 +9,24 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: 19 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: lts - - name: Cache Yarn dependencies - uses: actions/cache@v2 - with: - path: .yarn/cache - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- + - name: Cache Yarn dependencies + uses: actions/cache@v2 + with: + path: .yarn/cache + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- - - name: Install dependencies - run: yarn install --immutable - - - name: Run tests - run: yarn test + - name: Install dependencies + run: yarn install --immutable + - name: Run tests + run: yarn test