-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (28 loc) · 886 Bytes
/
ci.yml
File metadata and controls
29 lines (28 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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@7 @nestjs/cli@11 create-vite@6 create-storybook@9.1.20
- run: npm i
- run: npm run build
- run: npm run test