generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (63 loc) · 1.79 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
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
81
name: Continuous Integration
on:
push:
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ghcr.io/cirruslabs/ubuntu-runner-arm64:22.04-md
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install dependencies
run: npm ci
- name: Check format
run: npm run format:check
- name: Lint
run: npm run lint
check-dist:
name: Check dist/
runs-on: ghcr.io/cirruslabs/ubuntu-runner-arm64:22.04-md
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install dependencies
run: npm ci
- name: Build dist/
id: build
run: npm run bundle
- name: Find differences
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
integration-test:
name: Integration test
runs-on: ghcr.io/cirruslabs/macos-runner:sonoma
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test SwiftLint Action (using latest SwiftLint)
uses: ./
- name: Test SwiftLint Action (using a specific version of SwiftLint)
uses: ./
with:
version: 0.55.0