mirror of
https://github.com/TxtDot/webder.git
synced 2024-11-05 13:13:59 +03:00
23 lines
453 B
YAML
23 lines
453 B
YAML
name: build-check
|
|
on: pull_request
|
|
jobs:
|
|
build-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Start build
|
|
run: pnpm run build
|