From 3476fbda22a366d462d0b07bc09cb903c1f5370c Mon Sep 17 00:00:00 2001 From: Muffin Date: Sat, 10 Feb 2024 01:28:07 -0600 Subject: [PATCH] Update workflow --- .github/workflows/validate.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index d275fb1..a3d970d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,20 +2,18 @@ name: Validate TypeScript on: push: - branches: [ "master" ] pull_request: - branches: [ "master" ] jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Setup Node.js environment - uses: actions/setup-node@v3.4.1 + - uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v4 with: - node-version: 14.x + node-version: 20 - name: Install dependencies run: npm ci - name: Validate TypeScript