diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2024-11-11 10:58:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 18:58:22 +0000 |
commit | 7008f61ea4cb356997f139bfe84fba98fcad805b (patch) | |
tree | 4025420c0806315774d0e3546ab6dbb406d14313 /.github | |
parent | 9e1a16686a650d832998b5128c104ec1f635e6a8 (diff) | |
download | voidsky-7008f61ea4cb356997f139bfe84fba98fcad805b.tar.zst |
Update Node.js to 20.x in Dockerfile (#6099)
* Update Node.js to 20.x in Dockerfile * Update Node.js types and engines entry to 20.x * Update Node.js version in .nvmrc * Use node version from .nvmrc in linting job * Use Type Assertion for clearTimeout
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 22cc65735..f0e23263d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,6 +16,10 @@ jobs: steps: - name: Check out Git repository uses: actions/checkout@v3 + - name: Install node + uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc - name: Yarn install uses: Wandalen/wretry.action@master with: |