Skip to content

Merge pull request #131 from Service-Soft/update-packages #116

Merge pull request #131 from Service-Soft/update-packages

Merge pull request #131 from Service-Soft/update-packages #116

Workflow file for this run

name: CI
on:
push:
branches-ignore: [release]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: docker/setup-compose-action@v1
- uses: actions/checkout@v4
- run: docker pull adminer
- run: docker pull postgres
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- run: npm i -g npm@latest
- run: npm i -g @angular/cli@20 zibri-cli @loopback/cli@6 @nestjs/cli@11 create-vite@6 create-storybook@9.1.16
- run: npm i
- run: npm run build
- run: npm run test