1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-04-21 02:33:54 +03:00

Configure installing dependencies with npm

This commit is contained in:
Kenneth Bruen 2021-12-06 14:37:58 +02:00
parent 2c28d5eb5c
commit 619ccc6be0
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1
2 changed files with 6 additions and 0 deletions

View file

@ -12,6 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install npm dependencies
working-directory: ./client
run: npm install
- name: Build Svelte app
working-directory: ./client
run: npm run build

View file

@ -9,6 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install npm dependencies
working-directory: ./client
run: npm install
- name: Build Svelte app
working-directory: ./client
run: npm run build