0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.github/workflows/schemas-main.yml

43 lines
942 B
YAML
Raw Normal View History

2021-07-25 12:33:22 -05:00
name: Schemas
on:
push:
branches: [ master ]
paths: [ 'packages/schemas/**' ]
pull_request:
branches: [ master ]
paths: [ 'packages/schemas/**' ]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-07-29 04:46:28 -05:00
- uses: actions/setup-node@v2
with:
node-version: '14'
2021-07-25 12:33:22 -05:00
2021-07-29 04:54:43 -05:00
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
- name: Cache pnpm modules
uses: actions/cache@v2
2021-07-25 12:33:22 -05:00
with:
2021-07-29 04:54:43 -05:00
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
2021-07-25 12:33:22 -05:00
restore-keys: |
2021-07-29 04:54:43 -05:00
${{ runner.os }}-
2021-07-25 12:33:22 -05:00
2021-07-29 04:54:43 -05:00
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
run_install: true
2021-07-25 12:33:22 -05:00
- name: Lint
working-directory: packages/schemas
2021-07-29 04:46:28 -05:00
run: npm run lint
2021-07-25 12:33:22 -05:00
- name: Build
working-directory: packages/schemas
2021-07-29 04:46:28 -05:00
run: npm run build