add beam case study #454
Workflow file for this run
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: 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 |