Skip to content

Commit

Permalink
feat(auth): conf and move to node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
over-flo79 committed Feb 23, 2022
1 parent cb97336 commit ca48ddd
Show file tree
Hide file tree
Showing 7 changed files with 37,421 additions and 153 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "12.x"
node-version: "16.x"

- name: Cache dependencies
uses: actions/cache@v2
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "12.x"
node-version: "16.x"

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.spin-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ then
fi
echo
echo "Setting node version just in case..."
nvm install 12.13.0
nvm install 16.14.0
echo
echo "Installing K6 for load testing..."
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
tasks:
- init: |
touch /tmp/.npm-lock
npm install && npm run build && make && npm i -g @nestjs/cli && nvm install 12.13.0
npm install && npm run build && make && npm i -g @nestjs/cli && nvm install 16.14.0
rm /tmp/.npm-lock
name: init
- command: sudo docker-up
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NODE_VERSION=12.18.1
ARG NODE_VERSION=16.14.0

########################
# Builder stage
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ Switch to Node 12 (required for some file upload dependencies)

```bash
# Setting Node version
nvm install 12.13.0
nvm install 16.14.0

# Check the node version is correctly set, must be 12.13.0
# Check the node version is correctly set, must be 16.14.0
node -v
```

Expand Down
Loading

0 comments on commit ca48ddd

Please sign in to comment.