migration to fetch #792
Workflow file for this run
This file contains hidden or 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: 🛠️ CI | |
on: | |
push: | |
branches: | |
- '**' # Runs on all branch pushes | |
tags-ignore: | |
- '**' # Ignore all tag pushes | |
repository_dispatch: | |
types: [ pr-approved ] | |
env: | |
PNPM_VERSION: '10' | |
jobs: | |
build: | |
name: 🏗️ Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- name: 🔄 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ⚙️ Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 📦 Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: 📌 Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🛠️ Building sources | |
run: pnpm run build | |
lint: | |
name: 🔍 Lint Code | |
needs: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- name: 🔄 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ⚙️ Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 📦 Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: 📌 Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: ✨ Linting | |
run: pnpm run lint | |
env: | |
CI: true | |
test_unit: | |
name: 🧪 Unit Tests | |
needs: build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- name: 🔄 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ⚙️ Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 📦 Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: 📌 Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🚀 Running unit tests | |
run: pnpm run test:unit | |
test_integration: | |
name: 🧩 Integration Tests | |
needs: | |
- lint | |
- test_unit | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- name: 🔄 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ⚙️ Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 📦 Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: 📌 Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 📝 Creating `.env` file | |
run: | | |
touch .env | |
echo HOST=${{ secrets.HOST }} >> .env | |
echo EMAIL=${{ secrets.EMAIL }} >> .env | |
echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env | |
- name: 🚀 Running integration tests | |
run: pnpm run test:integration |