mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2024-11-26 06:05:34 +01:00
e82a782ac3
* chore(dependencies): updated * fix(actions): Remove version from name * fix(actions): Remove version from name
26 lines
611 B
YAML
26 lines
611 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@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93
|
|
with:
|
|
node-version: v16.17.1
|
|
- name: Install Dependencies, Test, and Build
|
|
run: |
|
|
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
|
yarn ci
|
|
env:
|
|
CI: true |