Skip to content

Commit

Permalink
remove --force on npm install. we don't need it now
Browse files Browse the repository at this point in the history
  • Loading branch information
robguthrie committed Feb 6, 2024
1 parent 64d73f2 commit 1fa7184
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -105,7 +105,7 @@ jobs:
echo $PWD
git clone https://github.com/loomio/loomio_channel_server.git
cd loomio_channel_server
npm install --force
npm install
npm run start > ../log/channel_server.log &
- name: create db
run: |
Expand All @@ -125,7 +125,7 @@ jobs:
run: |
cd vue
rm -rf node_modules
npm install --force
npm install
npm run build
- name: run e2es
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -33,7 +33,7 @@ COPY . .
RUN bundle install && bundle exec bootsnap precompile --gemfile app/ lib/

WORKDIR /loomio/vue
RUN npm install --force
RUN npm install
RUN npm run build
WORKDIR /loomio

Expand Down

0 comments on commit 1fa7184

Please sign in to comment.