2021-10-08 21:50:49 +00:00
|
|
|
name: Build and Lint
|
|
|
|
|
|
|
|
on:
|
2021-12-28 19:39:02 +00:00
|
|
|
pull_request:
|
|
|
|
push:
|
2021-10-08 21:50:49 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-12-28 19:39:02 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 15:15:56 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-05-05 01:19:54 +00:00
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: latest
|
2021-12-28 19:39:02 +00:00
|
|
|
- name: Setup Node.js
|
2023-10-23 16:26:43 +00:00
|
|
|
uses: actions/setup-node@v4
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
2023-05-05 01:19:54 +00:00
|
|
|
cache: "pnpm"
|
|
|
|
- run: pnpm install
|
|
|
|
- run: pnpm build
|
2023-12-14 17:14:44 +00:00
|
|
|
- uses: actions/upload-artifact@v4
|
2023-08-27 15:22:42 +00:00
|
|
|
with:
|
|
|
|
name: build
|
|
|
|
path: dist
|
2023-05-05 01:19:54 +00:00
|
|
|
- run: pnpm lint --no-fix
|