-
Notifications
You must be signed in to change notification settings - Fork 7
48 lines (42 loc) · 1.16 KB
/
angular-ci.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
# Based on: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Angular CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
buildprep:
uses: rdamazio/efis-editor/.github/workflows/build-prep.yml@main
build:
runs-on: ubuntu-latest
needs: buildprep
steps:
- name: Fetch prepared artifacts
uses: actions/download-artifact@v4
with:
name: prepared-source
- name: Extract prepared artifacts
run: tar xf prepared-source.tar
- name: Build
run: npm run build --if-present
- name: Run tests
run: npm run test:headless
lint:
runs-on: ubuntu-latest
needs: buildprep
steps:
- name: Fetch prepared artifacts
uses: actions/download-artifact@v4
with:
name: prepared-source
- name: Extract prepared artifacts
run: tar xf prepared-source.tar
- run: npm run format
- run: npm run lint
- uses: codespell-project/actions-codespell@v2
with:
path: src
- uses: marocchino/validate-dependabot@v3
id: validate