Skip to content

Continuous Integration (dmarov) #12

Continuous Integration (dmarov)

Continuous Integration (dmarov) #12

Workflow file for this run

name: CI
run-name: Continuous Integration (${{ github.actor }})
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm ci
- run: npm run prettier
- run: npm run lint
- run: npm run lint:styles
- run: npm run test:ci
- run: cp ./src/environments/environment.example.ts ./src/environments/environment.ts
- run: npm run build:prod