Provide env vars to CI build job #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / CIInvalid workflow file
|
||
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 |