Merge pull request #9 from waku-org/weboko/fix-pipeline

fix: pipeline error
This commit is contained in:
Alvaro Revuelta 2023-11-07 08:52:47 +01:00 committed by GitHub
commit f7ba689d87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -26,9 +26,11 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup npm
uses: bahmutov/npm-install@v1
run: npm ci
- name: Artefact build
run: npm run build

View File

@ -29,5 +29,5 @@ npm run serve
```bash
npm run build
docker build -t waku_frontend .
docker run -d -p 300:3000 waku_frontend
docker run -d -p 8080:80 waku_frontend
```