Skip to content

Commit

Permalink
Fix Dependabot/GitHub actions/actions/upload artifact 4 (#1065)
Browse files Browse the repository at this point in the history
* fix/pipeline/vscode : use a dedicated job to generate the vscode extension

* feat/pipeline/vscode : use nodejs version 20 instead of 16
  • Loading branch information
Alidra authored Mar 6, 2024
1 parent 96b6282 commit cf607ec
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
workflow_dispatch:
jobs:
build:
build_lambdapi:
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -34,8 +34,15 @@ jobs:
eval $(opam env)
#why3 config detect
make tests
build_vscode_extension:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: checking out lambdapi repo ...
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: latest
- name: generate-vscode-extension
Expand Down

0 comments on commit cf607ec

Please sign in to comment.