From e3f9f45e9d4f1c7d362b9e50001ab746dd9619a5 Mon Sep 17 00:00:00 2001 From: Cay Henning <46247315+cayb0rg@users.noreply.github.com> Date: Tue, 31 Oct 2023 09:59:19 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86d256f..9b64d42 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,17 +5,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.3.1] + node-version: [18.13.0] steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run tests with Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm install -g yarn - run: yarn install - run: yarn test-ci - - run: yarn build \ No newline at end of file + - run: yarn build