Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade node on CI to 18 version #164

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/build-and-deploy-utbot-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- name: Install dependencies
run: |
set -o xtrace
npm install -g yarn
npm install -g gatsby-cli
sudo apt-get install python3

- name: Install packages
run: |
set -o xtrace
npm install
npm install --force
yarn

- name: Build UTBot Site
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/build-utbot-site.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Build Site
on:
push:
branches: [source]
workflow_dispatch:
pull_request:
branches: [source]

Expand All @@ -10,22 +9,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- name: Install dependencies
run: |
set -o xtrace
npm install -g yarn
npm install -g gatsby-cli
sudo apt-get install python3

- name: Install packages
run: |
set -o xtrace
npm install
npm install --force
yarn

- name: Build UTBot Site
run:
npm run build