Skip to content

Commit

Permalink
chore: remove lockfiles (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored May 9, 2022
1 parent 8a2e27f commit 4c2f1af
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 24,473 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: 🔬 Lint
run: npm run lint
Expand All @@ -45,6 +47,8 @@ jobs:

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: 🔎 Type check
run: npm run typecheck --if-present
Expand All @@ -66,6 +70,8 @@ jobs:

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: ⚡ Run vitest
run: npm run test -- --coverage
Expand All @@ -90,6 +96,8 @@ jobs:

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: 🐳 Docker compose
# the sleep is just there to give time for postgres to get started
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# We don't want lockfiles in stacks, as people could use a different package manager
# This part will be removed by `remix.init`
package-lock.json
yarn.lock
pnpm-lock.yaml
pnpm-lock.yml

node_modules

/build
Expand Down
Loading

0 comments on commit 4c2f1af

Please sign in to comment.