Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

feat(gitpod): add redis to gitpod config #26

feat(gitpod): add redis to gitpod config

feat(gitpod): add redis to gitpod config #26

Workflow file for this run

name: NPM Build
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node 20
uses: actions/setup-node@v3
with:
node-version: "20"
check-latest: true
- name: Install dependencies
run: npm install --prefix frontend
- name: Build
run: npm run build --prefix frontend