Skip to content

Commit

Permalink
Merge pull request #81 from thibaudbrault/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
thibaudbrault committed Jun 17, 2023
2 parents 498ec0c + a7cdc7f commit fd602b1
Show file tree
Hide file tree
Showing 8 changed files with 7,149 additions and 16,499 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
fetch-depth: 0
version: 8

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'npm'
cache: 'pnpm'

- name: Install dependencies
run: npm install
run: pnpm install

- name: Check types
run: npm run type-check
run: pnpm type-check

- name: Check linting
run: npm run lint
run: pnpm lint
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
pnpm dlx lint-staged
5 changes: 4 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
save-exact = true
legacy-peer-deps = true
legacy-peer-deps = true
auto-install-peers = true
strict-peer-dependencies = false
public-hoist-pattern[] = *
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build]
command = "npm run build"
command = "pnpm run build"
publish = ".next"

[[plugins]]
Expand Down
Loading

0 comments on commit fd602b1

Please sign in to comment.