mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-24 03:09:52 -06:00
* Improve developer experience by analyzing PRs automatically using Github actions * update docker workflow base images * use ubuntu latest image * move issue label action to workflow dir
37 lines
833 B
YAML
37 lines
833 B
YAML
name: Tests
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
build:
|
|
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
|
|
env:
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js 18.x
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.x
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v2.2.4
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --config.platform=linux --config.architecture=x64
|
|
|
|
- name: create .env
|
|
run: cp .env.example .env
|
|
|
|
- name: Build formbricks-js dependencies
|
|
run: pnpm build --filter=js
|
|
|
|
- name: Test
|
|
run: pnpm test
|