From bfdbc9016688f64a487346e916ebbdfa583c504e Mon Sep 17 00:00:00 2001 From: Justin H <84724234+JustinhSE@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:31:35 -0500 Subject: [PATCH] Upgrade GitHub Actions to v4 and add lint step --- .github/workflows/typescript-build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml index bcd4d39..7b14b3c 100644 --- a/.github/workflows/typescript-build.yml +++ b/.github/workflows/typescript-build.yml @@ -8,9 +8,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: '18' - - run: npm install + - run: npm ci + - run: npm run lint - run: npm run build