Skip to content

build: add node version command view #2

build: add node version command view

build: add node version command view #2

Workflow file for this run

name: Build and Release
on:
push:
branches: ['main']
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check node version
run: node -v
- name: Install dependencies
run: npm ci
- name: Build the app
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build # The folder the action should deploy.