Loggit #5
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: CI | |
on: push | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: '๐ง๐ปโ๐ป Checkout repository' | |
uses: actions/checkout@v4 | |
- name: '๐ Set up Node.js' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '23' | |
- name: '๐ฆ Install pnpm' | |
run: npm install -g pnpm | |
- name: '๐ Install dependencies' | |
run: pnpm install | |
- name: '๐ฎ๐ป Lint' | |
run: pnpm install | |
- name: '๐ Resolve' | |
run: pnpm run resolve | |
- name: '๐งช Test' | |
run: pnpm test | |
- name: '๐ท๐ป Build the project' | |
run: pnpm run build |