Skip to content

[CI] Bump @types/node from 18.19.33 to 20.14.0 #99

[CI] Bump @types/node from 18.19.33 to 20.14.0

[CI] Bump @types/node from 18.19.33 to 20.14.0 #99

Workflow file for this run

name: Run check 🚥
on:
pull_request:
branches:
- 'develop'
- 'main'
paths:
- 'src/**.ts'
- 'package.json'
- 'package-lock.json'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name : "Install dependencies"
run: npm i
- name: Run linter
run: npm run lint
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name : "Install dependencies"
run: npm i
- name: Run linter
run: npm run test
build:
runs-on: ubuntu-latest
needs: [test, lint]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name : "Install dependencies"
run: npm i
- name: Run linter
run: npm run build