build(npm): bump @types/node from 18.19.59 to 22.8.1 #367
Workflow file for this run
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: Node.js | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
# Check if it works with current dependencies | |
- cron: '42 2 * * 6' # weekly on Saturday 2:42 UTC | |
jobs: | |
test: | |
name: Node.js | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/checkout@v4 | |
- run: npm install | |
- run: npm test | |
- run: npm pack |