Node.js ⬢ CI #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |