From 91b1edf0d3f697cc03a5188f3896f04a97031624 Mon Sep 17 00:00:00 2001 From: Travis Cory Date: Fri, 22 Nov 2024 09:17:13 -0800 Subject: [PATCH] migrate to node lts --- .github/workflows/testAnimations.yml | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/testAnimations.yml b/.github/workflows/testAnimations.yml index 8a37defce..be7c3a2fb 100644 --- a/.github/workflows/testAnimations.yml +++ b/.github/workflows/testAnimations.yml @@ -3,22 +3,18 @@ name: Node.js CI -on: - pull_request +on: pull_request jobs: - create_snapshots: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js 16.x - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - - run: npm install - - run: npm run test:create - - run: npm run build - - run: npm run test:compare \ No newline at end of file + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: "22.11.0" + - run: npm install + - run: npm run test:create + - run: npm run build + - run: npm run test:compare