File tree Expand file tree Collapse file tree 4 files changed +69
-1618
lines changed
Expand file tree Collapse file tree 4 files changed +69
-1618
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,22 @@ jobs:
1313 name : Linting
1414 runs-on : ubuntu-latest
1515 steps :
16- # - name: Install NodeJS
17- # uses: actions/setup-node@v2
18- # with:
19- # node-version: ${{ env.NODE_VERSION }}
20-
21- - name : Install Bun
22- uses : oven-sh/setup-bun@v2
16+ - name : Install NodeJS
17+ uses : actions/setup-node@v2
2318 with :
24- bun-version : latest
19+ node-version : ${{ env.NODE_VERSION }}
20+
21+ # - name: Install Bun
22+ # uses: oven-sh/setup-bun@v2
23+ # with:
24+ # bun-version: latest
2525
2626 - name : Code Checkout
2727 uses : actions/checkout@v2
2828
2929 - name : Install Dependencies
30- run : bun install --frozen-lockfile
30+ # run: bun install --frozen-lockfile
31+ run : npm install --legacy-peer-deps
3132
3233 - name : Code Linting
33- run : bun run lint
34+ run : npm run lint
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ FROM node:current-alpine AS dependency
22
33WORKDIR /app
44COPY package.json .
5- COPY bun. lock .
6- RUN npm ci -legacy-peer-deps
5+ COPY package- lock.json .
6+ RUN npm install - -legacy-peer-deps
77
88FROM node:current-alpine AS builder
99WORKDIR /app
You can’t perform that action at this time.
0 commit comments