From 9c3870ab603fe6f897d14207fe844129f3606a29 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Thu, 23 Jan 2025 00:54:35 -0800 Subject: [PATCH] chore: explicit node version --- .gitea/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 87790cf..e20d53e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,18 +10,15 @@ on: jobs: lint: name: Lint and Test - strategy: - matrix: - node-version: [22.x] steps: - name: Checkout Source Files uses: actions/checkout@v4 - - name: Use Node.js v${{ matrix.node-version }} + - name: Use Node.js v22 uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 22 - name: Setup pnpm uses: pnpm/action-setup@v2