nestjs-http-promise/.github/workflows/test.yml
dependabot[bot] 26db78f7e5
ci(action): bump actions/checkout from 4.1.0 to 4.1.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1.
- [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.0...v4.1.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-18 14:42:56 +00:00

48 lines
906 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
container: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Use Node.js
uses: actions/setup-node@v3.8.1
with:
node-version: '20.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.1
- name: Use Node.js
uses: actions/setup-node@v3.8.1
with:
node-version: '20.x'
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Lint
run: npm run lint -- --no-fix