add toolbar integration setup (#61) #316
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Begin CI... | |
uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Use Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.17 | |
cache: "pnpm" | |
- name: Use cached node_modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: nodeModules-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
nodeModules- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
env: | |
CI: true | |
- name: Test | |
run: pnpm turbo run test -- --ci --coverage --maxWorkers=2 | |
env: | |
CI: true | |
- name: Build | |
run: pnpm build | |
env: | |
CI: true | |
NEXT_PUBLIC_FLAGS_ENDPOINT: https://happykit.dev/api/flags | |
NEXT_PUBLIC_FLAGS_ENV_KEY: flags_pub_development_289861443285680649 |