generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (66 loc) · 1.85 KB
/
build.yml
File metadata and controls
80 lines (66 loc) · 1.85 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital
# SPDX-License-Identifier: MIT
name: Build
on:
pull_request:
push:
branches:
- main
- release
permissions:
contents: read
jobs:
build:
name: Check and Build
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
id: setup-node
- name: Build
id: build
run: pnpm build
- name: Lint
id: npm-lint
run: pnpm lint
- name: Check spelling
id: npm-check-spelling
run: pnpm cspell
- name: Check TypeScript types
id: npm-check-types
run: pnpm check:types
- name: Test unit
id: npm-test
run: pnpm test:unit
# This will fail the workflow if the `dist/` directory is different than
# expected.
- name: Compare Directories
id: diff
run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/
exit 1
fi
# If `dist/` was different than expected, upload the expected version as a
# workflow artifact.
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
- name: Upload coverage
id: upload-coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/