2021-10-09 03:20:49 +05:30
|
|
|
name: Build and Lint
|
|
|
|
|
|
|
|
on:
|
2021-12-29 01:09:02 +05:30
|
|
|
pull_request:
|
|
|
|
push:
|
2021-10-09 03:20:49 +05:30
|
|
|
|
|
|
|
jobs:
|
2021-12-29 01:09:02 +05:30
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-02 09:37:41 +05:30
|
|
|
- uses: actions/checkout@v3
|
2023-05-05 06:49:54 +05:30
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: latest
|
2021-12-29 01:09:02 +05:30
|
|
|
- name: Setup Node.js
|
2022-09-11 00:20:54 +05:30
|
|
|
uses: actions/setup-node@v3
|
2021-12-29 01:09:02 +05:30
|
|
|
with:
|
2023-05-05 06:49:54 +05:30
|
|
|
cache: "pnpm"
|
|
|
|
- run: pnpm install
|
|
|
|
- run: pnpm build
|
|
|
|
- run: pnpm lint --no-fix
|