Skip to content

Commit bb95d0e

Browse files
authored
Merge pull request #212 from metadevpro/feature/ng-18
Feature/ng 18
2 parents e9b7317 + 04a1423 commit bb95d0e

File tree

10 files changed

+6243
-7201
lines changed

10 files changed

+6243
-7201
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Pull Request Actions
2+
3+
on:
4+
pull_request:
5+
branches: [devel]
6+
7+
jobs:
8+
ci:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Install dependencies
14+
run: npm install
15+
- name: Lint lux
16+
run: npm run lint:lux
17+
- name: Lint app
18+
run: npm run lint
19+
- name: Test lux
20+
run: npm run test:coverage
21+
- name: Build lux
22+
run: npm run build:lux
23+
- name: Build app
24+
run: npm run build

0 commit comments

Comments
 (0)