-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.04 KB
/
main.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Main
on:
push:
branches: [ main ]
jobs:
build-dsl:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
strategy:
matrix:
node-version: [ 18.x ]
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Generate Langium files
run: npm run langium:generate
- name: Compile TypeScript
run: npm run build
- name: Check Svelte components
run: npm run check -w @safe-ds/eda
- name: Test with Vitest
run: npm run test-with-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: coverage
files: coverage-final.json