renovate: update dependency @types/node to v20.16.14 #634
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository π | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Setup Node βοΈ | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: npm | |
cache-dependency-path: "package-lock.json" | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies π§ | |
# include devDependencies https://stackoverflow.com/a/64648870 | |
run: npm ci --audit=false --include=dev --include=optional --include=peer | |
- name: Build package ποΈ | |
run: npm run build |