-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.75 KB
/
nodejs.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
name: Node.js ⬢ CI
run-name: Node.js ⬢ CI
on:
push:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout 📖
uses: actions/checkout@v4
- name: Hello! from matrix ${{ matrix.node-version }} 🚀
run: echo "Using Node.js ${{ matrix.node-version }} ${{github.workflow}} ${{github.event_name}} ${{github.actor}}"
- name: More and mode 🤓
env:
JOB_CONTEXT: ${{toJson(job)}}
# status to this point
run: |
echo "Job context: ${JOB_CONTEXT}"
echo "Done!!!"
# JOB_CONTEXT.status === 'fail', send notification to slack
- name: Install build dependencies 🛠️ (giflossy, zopflipng)
run: sudo apt-get update && sudo apt-get install -y build-essential libpng-dev
- name: Enable corepack and pnpm ⚙️
run: |
corepack enable
corepack prepare pnpm@latest --activate
pnpm config set store-dir ~/.pnpm-store
- name: Use Node.js ⚙️ ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Cache dependencies 🔒
id: cache-pnpm-store
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('package.json') }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('.github/workflows/nodejs.yml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies 📦
run: |
pnpm install --frozen-lockfile
- name: Run tests 🧪
run: |
node --run test