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