Skip to content

Commit

Permalink
move from yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Oct 23, 2023
1 parent a5604a2 commit aa32094
Show file tree
Hide file tree
Showing 6 changed files with 1,140 additions and 610 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:

- uses: volta-cli/action@v4

- run: yarn
- run: yarn build
- run: npm i
- run: npm ci

- uses: actions/cache@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:20-alpine3.18 as frontend-builder
FROM node:21-alpine3.18 as frontend-builder

WORKDIR /app
COPY yarn.lock package.json buildscript.js ./
COPY package-lock.json package.json buildscript.js ./
COPY src ./src/
RUN yarn install --pure-lockfile
RUN yarn build
RUN npm ci
RUN npm run build

FROM rust:1.72-alpine3.18 as builder

Expand Down
Loading

0 comments on commit aa32094

Please sign in to comment.