Skip to content

Commit

Permalink
node20
Browse files Browse the repository at this point in the history
  • Loading branch information
vslinko committed Sep 2, 2024
1 parent 3bf2829 commit d9f2972
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
env:
OBSIDIAN_VERSION: "1.5.11"
OBSIDIAN_FLATPAK_COMMIT: 45aca5bfa83d1283e2b75ff7e9c394ea46697eb5eb48703b774f48fca4242c9a
NODE_VERSION: 20

jobs:
lint:
Expand All @@ -24,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: $NODE_VERSION
- name: Install dependencies
run: npm ci
- name: Lint
Expand All @@ -39,13 +40,13 @@ jobs:
sudo apt install flatpak dbus-x11 xvfb
flatpak remote-add --user flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user -y flathub md.obsidian.Obsidian
flatpak update --user -y --commit=$OBSIDIAN_FLATPAK_COMMIT md.obsidian.Obsidian
#flatpak update --user -y --commit=$OBSIDIAN_FLATPAK_COMMIT md.obsidian.Obsidian
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: $NODE_VERSION
- name: Install dependencies
run: npm ci
- name: Test
Expand All @@ -69,7 +70,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: $NODE_VERSION
- name: Install dependencies
run: npm ci
- name: Test
Expand All @@ -86,7 +87,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: $NODE_VERSION
- name: Install dependencies
run: npm ci
- name: Build
Expand Down

0 comments on commit d9f2972

Please sign in to comment.