mirror of
https://github.com/lukin/keywind.git
synced 2025-01-27 17:56:24 +00:00
18 lines
344 B
YAML
18 lines
344 B
YAML
name: CI Pipeline Push and Pull Request
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build-lib:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
- run: npm install
|
|
- run: npm run build
|