Skip to content

Commit

Permalink
build!: migrate npm to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Dec 31, 2023
1 parent b94c36d commit db3e428
Show file tree
Hide file tree
Showing 5 changed files with 8,485 additions and 16,857 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Expand Up @@ -23,10 +23,10 @@ jobs:
node-version: 20

- name: Install dependencies
run: npm ci
run: yarn ci

- name: ESLint
run: npm run lint
run: yarn run lint

- name: Types
run: npm run typecheck
run: yarn run typecheck
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -5,11 +5,11 @@ WORKDIR /app
COPY package.json /app
COPY package-lock.json /app

RUN npm install
RUN yarn install

COPY . /app

RUN npm run build
RUN yarn run build

# There are build issues on the Node 20 version. Jump to 20 when the bug will be fixed.
# https://github.com/nodejs/docker-node/issues/1946
Expand Down

0 comments on commit db3e428

Please sign in to comment.