Skip to content

Workflow file for this run

name: UN Environment
on:
push:
jobs:
build:
name: "Test and build app"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # here you can add many different node versions
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: print body
run: |
echo "VITE_BACKEND_URL=${{ secrets.VITE_BACKEND_URL }}"