Skip to content

Commit

Permalink
Use Node 16 across the project
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeldesu committed Oct 15, 2023
1 parent 439797e commit e3e45ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .docker/ruby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG GID=1000
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list

RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -

RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends build-essential \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
uses: tj-actions/changed-files@v39
with:
files: "**/*.ts"
- name: Set up Node 14
- name: Set up Node 16
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules
Expand Down Expand Up @@ -92,10 +92,10 @@ jobs:
uses: tj-actions/changed-files@v39
with:
files: "**/*.scss"
- name: Set up Node 14
- name: Set up Node 16
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/retrospring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Set up Node 14
- name: Set up Node 16
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'
- name: Copy default configuration
run: |
Expand Down

0 comments on commit e3e45ac

Please sign in to comment.