-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (36 loc) · 1.05 KB
/
basic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Lint, Typecheck, GraphQL Codegen
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
merge_group:
types: [checks_requested]
jobs:
lint-typecheck:
name: Lint and Typecheck
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
BIGCOMMERCE_STORE_HASH: ${{ secrets.BIGCOMMERCE_STORE_HASH }}
BIGCOMMERCE_CUSTOMER_IMPERSONATION_TOKEN: ${{ secrets.BIGCOMMERCE_CUSTOMER_IMPERSONATION_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@main
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Graphql Codegen
run: pnpm run -r codegen
- name: Lint
run: pnpm run lint -- --max-warnings=0
- name: Typecheck
run: pnpm run typecheck