Skip to content

Commit 6fa0889

Browse files
fix: lock file maintenance (#181)
1 parent 4b711d9 commit 6fa0889

File tree

4 files changed

+1845
-1601
lines changed

4 files changed

+1845
-1601
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"features": {
33
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
44
},
5-
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-16",
5+
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18",
66
"updateContentCommand": "yarn --frozen-lockfile"
77
}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
github.event.pull_request.head.ref || '' }}
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 16
17+
node-version: 18
1818
- run: git config --global user.email "[email protected]"
1919
- run: git config --global user.name "GitHub Actions"
2020
- run: yarn --frozen-lockfile

.gitpod.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN sudo apt-get install git-lfs
66
RUN git lfs install
77

88
# https://www.gitpod.io/docs/languages/javascript
9-
RUN bash -c 'VERSION="16" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'
9+
RUN bash -c 'VERSION="18" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'
1010

1111
RUN echo "\nexport PATH=$(yarn global bin):\$PATH" >> /home/gitpod/.bashrc
1212

0 commit comments

Comments
 (0)