nestjs-http-promise/.github/workflows/test.yml
Conicaw 90c656eeba
ci(release): use node 22
Use node 22

commit-id:a824bb56
2024-04-26 14:58:06 -05:00

47 lines
884 B
YAML

name: test
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.4
- name: Use Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '22.x'
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: NPM Build
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.4
- name: Use Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '22.x'
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Lint
run: npm run lint -- --no-fix