-
Notifications
You must be signed in to change notification settings - Fork 7
52 lines (45 loc) · 1.36 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
49
50
51
52
# 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:
permissions:
contents: read
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
# Attempt to re-run in case there's flakiness.
run: npm run test:headless || 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@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2
with:
path: src
- uses: marocchino/validate-dependabot@d8ae5c0d03dd75fbd0ad5f8ab4ba8101ebbd4b37 # v3
id: validate