From 36095c8150f4b455dc1b49a1bd4e6fcda5eed0f0 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Wed, 2 Oct 2024 11:32:18 +0200 Subject: [PATCH] chore: upgrade CI nodejs to 18 --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 893b1b8..aae2327 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,15 +7,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: yarn - - run: yarn run lint - - run: yarn run type-check - - run: yarn run test - - run: yarn run build + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn + - run: yarn run lint + - run: yarn run type-check + - run: yarn run test + - run: yarn run build