littlelink-server/.github/workflows/pull-request.yml

27 lines
612 B
YAML
Raw Normal View History

2021-08-16 04:24:33 +02:00
name: 'Pull Request'
on:
pull_request:
branches:
- master
paths-ignore:
- .gitignore
- README.md
- LICENSE
jobs:
js-install-and-test:
runs-on: ubuntu-latest
steps:
2022-08-30 05:07:06 +02:00
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
- name: Use Node.js
2022-08-30 05:07:06 +02:00
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93
2021-08-16 04:24:33 +02:00
with:
node-version: v20.10.0
2021-08-16 04:24:33 +02:00
- name: Install Dependencies, Test, and Build
run: |
yarn install --frozen-lockfile --check-files --network-timeout 600000
yarn ci
2021-08-16 04:24:33 +02:00
env:
2023-01-31 03:12:55 +01:00
CI: true