feat!: ✨ utilise iconify au lieu de oh-vue-icons #901
Workflow file for this run
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: Unit & Component Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
tests: | |
name: Run unit tests and CT tests | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
env: | |
VITE_APP_GIT_TAG: ${{github.ref}} | |
VITE_APP_GIT_SHA: ${{github.sha}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Lint (show only errors) | |
run: pnpm lint --quiet | |
- name: Test | |
run: pnpm test | |
- name: Build | |
run: pnpm build |