Skip to content

blog: add training on any cloud with Tigris post #449

blog: add training on any cloud with Tigris post

blog: add training on any cloud with Tigris post #449

Workflow file for this run

name: test
on:
- pull_request
env:
NEXT_PUBLIC_POSTHOG_APIKEY: dummy_for_testing
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Pull submodules
run: git submodule update --init --recursive
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Check types + linting + build
run: |
npm install
npx prettier --check .
npx eslint .
npm run build