Skip to content

Provide env vars to CI build job #41

Provide env vars to CI build job

Provide env vars to CI build job #41

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
env:
API_PROXY_URL: ${{ env.API_PROXY_URL }}

Check failure on line 15 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 15, Col: 22): Unrecognized named-value: 'env'. Located at position 1 within expression: env.API_PROXY_URL .github/workflows/ci.yml (Line: 16, Col: 28): Unrecognized named-value: 'env'. Located at position 1 within expression: env.PUBLIC_API_BASE_URL
PUBLIC_API_BASE_URL: ${{ env.PUBLIC_API_BASE_URL }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: jetli/wasm-pack-action@v0.4.0
with:
version: "latest"
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format
run: npm run format:ci
- name: Build
run: npm run build
- name: Test
run: npm run test