first commit #1
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: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Action Setup | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup NodeJs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Setup Pnpm | |
run: npm install -g pnpm | |
- name: Installing Dependencies | |
run: pnpm install | |
- name: Linting | |
run: pnpm run lint |