mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-07 06:12:31 -06:00
* upgrade nextjs to 13 * update docker compose, fix env bug * update github actions check workflow to lint on ubuntu image
29 lines
605 B
YAML
29 lines
605 B
YAML
name: Checks
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js 16.x
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v2.2.2
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Lint
|
|
run: pnpm lint
|