Skip to content

feat: ✨ handle reserver identifiers #9

feat: ✨ handle reserver identifiers

feat: ✨ handle reserver identifiers #9

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 20.10.0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm run lint
- name: Commit lint
run: pnpm commitlint --from=HEAD~1 --to=HEAD --verbose
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 20.10.0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm run test
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 20.10.0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm run build