mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2025-01-28 16:01:58 +01:00
27 lines
620 B
YAML
27 lines
620 B
YAML
name: 'Pull Request'
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- .gitignore
|
|
- README.md
|
|
- LICENSE
|
|
|
|
jobs:
|
|
js-install-and-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1
|
|
with:
|
|
node-version: v20.10.0
|
|
- name: Install Dependencies, Test, and Build
|
|
run: |
|
|
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
|
yarn ci
|
|
env:
|
|
CI: true
|