Skip to content

fix: isStringType for Nullable(String) and FixedString(N) (#830) #1500

fix: isStringType for Nullable(String) and FixedString(N) (#830)

fix: isStringType for Nullable(String) and FixedString(N) (#830) #1500

name: run-frontend-tests
on:
push:
branches:
- v1
- main
pull_request:
branches:
- v1
- main
schedule:
- cron: '0 9 1 * *'
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Setup packages
id: setup-packages
run: |
sudo apt-get update -y
sudo apt-get install -y zip zstd jq git
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install yarn dependencies
run: yarn install
env:
NODE_OPTIONS: '--max_old_space_size=4096'
- name: Build
run: go build -v ./...
- name: Build Frontend
run: yarn build
env:
NODE_OPTIONS: '--max_old_space_size=4096'