Skip to content

v0.4.2: Complete i18n (373 strings), new plugin icon, i18n tooling #18

v0.4.2: Complete i18n (373 strings), new plugin icon, i18n tooling

v0.4.2: Complete i18n (373 strings), new plugin icon, i18n tooling #18

Workflow file for this run

name: Build & Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10.24.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Type check
run: pnpm run type-check
- name: Build
run: pnpm run build
- name: Build plugin
run: pnpm run build:plugin
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: openfields-plugin-build
path: plugin/
retention-days: 5