Skip to content

Create posts “desenvolvimento-dirigido-pelo-dominio-ddd-criando-software-que-faz-sentido” #38

Create posts “desenvolvimento-dirigido-pelo-dominio-ddd-criando-software-que-faz-sentido”

Create posts “desenvolvimento-dirigido-pelo-dominio-ddd-criando-software-que-faz-sentido” #38

Workflow file for this run

name: ci
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 18.x
- uses: actions/cache@v2
id: npm-cache
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build