Skip to content

god bless

god bless #46

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
env:
API_PROXY_URL: ${{ vars.API_PROXY_URL }}
PUBLIC_API_BASE_URL: ${{ vars.PUBLIC_API_BASE_URL }}
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
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