mirror of
https://github.com/TxtDot/webder.git
synced 2024-11-05 21:24:00 +03:00
20 lines
380 B
YAML
20 lines
380 B
YAML
|
name: build-check
|
||
|
on: pull_request
|
||
|
jobs:
|
||
|
build-check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Node.js
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: '18'
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: npm install
|
||
|
|
||
|
- name: Start build
|
||
|
run: npm run build
|