nestjs-http-promise/.github/workflows/test.yml
dependabot[bot] 948ccd10dd
ci(action): bump actions/checkout in the dependencies group
Bumps the dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 4.1.5 to 4.1.6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-17 14:23:30 +00: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.6
- 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.6
- 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