0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/.github/workflows/ui-main.yml

41 lines
1 KiB
YAML
Raw Normal View History

2021-07-26 01:11:38 +08:00
name: UI
2021-07-11 22:28:35 +08:00
on:
push:
branches: [ master ]
2021-07-26 01:11:38 +08:00
paths: [ 'packages/ui/**' ]
2021-07-11 22:28:35 +08:00
pull_request:
branches: [ master ]
2021-07-26 01:11:38 +08:00
paths: [ 'packages/ui/**' ]
2021-07-26 01:03:54 +08:00
2021-07-11 22:28:35 +08:00
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install packages
2021-07-26 21:40:49 +08:00
run: yarn
2021-07-11 22:28:35 +08:00
- name: Lint
2021-07-26 01:33:22 +08:00
working-directory: packages/ui
2021-07-11 22:28:35 +08:00
run: yarn lint && yarn stylelint
- name: Build
2021-07-26 01:33:22 +08:00
working-directory: packages/ui
2021-07-11 22:28:35 +08:00
run: yarn build