nestjs-http-promise/.github/workflows/test.yml
Conicaw e69f7a6c63
ci: simplify npm cache
Simplify npm cache
2023-07-23 13:38:58 -05: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@v3.5.3
- name: Use Node.js
uses: actions/setup-node@v3.7.0
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@v3.5.3
- name: Use Node.js
uses: actions/setup-node@v3.7.0
with:
node-version: '20.x'
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Lint
run: npm run lint -- --no-fix