Install node as part of ci.yml when bundling the app

This commit is contained in:
Antonio Scandurra 2022-03-02 14:58:24 +01:00
parent 65f53db6e7
commit c97983d25a
2 changed files with 60 additions and 1 deletions

View file

@ -64,6 +64,11 @@ jobs:
target: aarch64-apple-darwin
profile: minimal
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Checkout repo
uses: actions/checkout@v2
with: