-
Notifications
You must be signed in to change notification settings - Fork 25
87 lines (68 loc) · 2.2 KB
/
skott.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
82
83
84
85
86
87
name: Skott Continuous Integration
on:
push:
branches: main
pull_request:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
skott:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-14]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Enable pnpm
run: corepack enable
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm -r build
- name: Run tests
run: pnpm -r test
env:
CI: true
- name: Run benchmarks
if: matrix.os == 'ubuntu-latest' && !contains(github.ref, 'main') && !contains(github.ref, 'release')
run: |
git stash
git config --local user.name "skott_bot"
git config --local user.email "[email protected]"
git fetch origin
git pull origin ${{ github.head_ref }} --rebase
pnpm -r benchmark
git status
git add .
git commit -m "benchmark: publish benchmark results from node_${{ matrix.node-version }}"
git pull origin ${{ github.head_ref }} --rebase
if git diff --quiet; then
echo "No conflicts, proceeding with the push."
else
git checkout --theirs .
git add .
git rebase --continue
fi
git push origin HEAD:${{ github.head_ref }}
env:
CI: true
NODE_VERSION: ${{ matrix.node-version }}