From 1e5d448f9ab61bc1456feac1e5083b1fa1e411ff Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Thu, 16 Dec 2021 22:44:18 -0600 Subject: [PATCH] just test on node lts --- .github/workflows/the.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/the.yml b/.github/workflows/the.yml index 2cb8a4e..1fb824b 100644 --- a/.github/workflows/the.yml +++ b/.github/workflows/the.yml @@ -16,17 +16,16 @@ jobs: ci: strategy: matrix: - node-version: [16, 17] script-name: [test-coverage, lint, typecheck] fail-fast: false - name: ${{ matrix.script-name }} (node ${{ matrix.node-version }}) + name: ${{ matrix.script-name }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: # https://github.com/actions/setup-node#supported-version-syntax - node-version: ${{ matrix.node-version }} + node-version: "lts/*" - run: npm i -g pnpm - run: pnpm install --frozen-lockfile - run: pnpm run build