File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 steps :
1111 - uses : actions/checkout@v2
1212
13+ - name : Use Node.js
14+ uses : actions/setup-node@v3
15+ with :
16+ node-version-file : ' .nvmrc'
17+
1318 - name : Run tests
1419 run : yarn test:integration
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-22.04
1010 steps :
1111 - uses : actions/checkout@v2
12+ - name : Use Node.js
13+ uses : actions/setup-node@v3
14+ with :
15+ node-version-file : ' .nvmrc'
1216 - name : Install modules
1317 run : yarn
1418 - name : Run tests
Original file line number Diff line number Diff line change 1- FROM node:14.17.0 -alpine as builder
1+ FROM node:16 -alpine as builder
22
33WORKDIR /usr/src/app
4- RUN apk add --no-cache git gcc g++ python make musl-dev
4+ RUN apk add --no-cache git gcc g++ python3 make musl-dev
55
66COPY package.json yarn.lock ./
77
88RUN yarn install
99
10- FROM node:14.17.0 -alpine
10+ FROM node:16 -alpine
1111
1212WORKDIR /usr/src/app
1313
You can’t perform that action at this time.
0 commit comments