-
Notifications
You must be signed in to change notification settings - Fork 13.5k
120 lines (100 loc) · 3.73 KB
/
ci-code-check.yml
File metadata and controls
120 lines (100 loc) · 3.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: Code Checks
on:
workflow_call:
inputs:
node-version:
required: true
type: string
deno-version:
required: true
type: string
env:
TOOL_NODE_FLAGS: ${{ vars.TOOL_NODE_FLAGS }}
jobs:
code-check:
runs-on: ubuntu-24.04-arm
name: ${{ matrix.check == 'ts' && 'TypeScript' || 'Code Lint' }}
strategy:
fail-fast: false
matrix:
check: ['ts', 'lint']
steps:
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 4
- uses: actions/checkout@v6
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: ${{ inputs.node-version }}
deno-version: ${{ inputs.deno-version }}
cache-modules: true
install: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: rharkor/caching-for-turbo@v1.8
- uses: ./.github/actions/restore-packages
- name: Restore TypeScript incremental cache
id: restore-typecheck
if: matrix.check == 'ts'
uses: actions/cache/restore@v5
with:
path: ./apps/meteor/tsconfig.typecheck.tsbuildinfo
key: typecheck-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
typecheck-cache-${{ runner.os }}-
- name: Cache observability (typecheck)
if: matrix.check == 'ts'
run: |
echo "### TypeScript incremental cache" >> $GITHUB_STEP_SUMMARY
echo "- **exact hit**: \`${{ steps.restore-typecheck.outputs.cache-hit }}\`" >> $GITHUB_STEP_SUMMARY
- name: Install Meteor
shell: bash
run: |
# Restore bin from cache
set +e
METEOR_SYMLINK_TARGET=$(readlink ~/.meteor/meteor)
METEOR_TOOL_DIRECTORY=$(dirname "$METEOR_SYMLINK_TARGET")
set -e
LAUNCHER=$HOME/.meteor/$METEOR_TOOL_DIRECTORY/scripts/admin/launch-meteor
if [ -e $LAUNCHER ]
then
echo "Cached Meteor bin found, restoring it"
sudo cp "$LAUNCHER" "/usr/local/bin/meteor"
else
echo "No cached Meteor bin found."
fi
# only install meteor if bin isn't found
command -v meteor >/dev/null 2>&1 || curl https://install.meteor.com | sed s/--progress-bar/-sL/g | /bin/sh
- name: TS TypeCheck
if: matrix.check == 'ts'
run: yarn turbo run typecheck --concurrency=5
- name: Save TypeScript incremental cache
if: matrix.check == 'ts' && github.ref == 'refs/heads/develop' && github.event_name == 'push'
uses: actions/cache/save@v5
with:
path: ./apps/meteor/tsconfig.typecheck.tsbuildinfo
key: typecheck-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Restore ESLint cache
id: restore-eslint
if: matrix.check == 'lint'
uses: actions/cache/restore@v5
with:
path: ./apps/meteor/.eslintcache
key: eslintcache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
eslintcache-${{ runner.os }}-
- name: Cache observability (eslint)
if: matrix.check == 'lint'
run: |
echo "### ESLint cache" >> $GITHUB_STEP_SUMMARY
echo "- **exact hit**: \`${{ steps.restore-eslint.outputs.cache-hit }}\`" >> $GITHUB_STEP_SUMMARY
- name: Lint
if: matrix.check == 'lint'
run: yarn lint
- name: Save ESLint cache
if: matrix.check == 'lint' && github.ref == 'refs/heads/develop' && github.event_name == 'push'
uses: actions/cache/save@v5
with:
path: ./apps/meteor/.eslintcache
key: eslintcache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}