Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
clement-berard committed Oct 29, 2024
1 parent e4dd888 commit 39c534c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: 🔍 Static Checks

on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name || github.ref }}
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: true

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm

- name: Install dependencies
run: pnpm install

- name: Lint
run: pnpm lint

0 comments on commit 39c534c

Please sign in to comment.