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:
|
2024-01-10 21:08:15 +01:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
|
2022-08-30 05:07:06 +02:00
|
|
|
|
2022-10-27 05:12:56 +02:00
|
|
|
- name: Use Node.js
|
2024-01-10 21:08:15 +01:00
|
|
|
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1
|
2021-08-16 04:24:33 +02:00
|
|
|
with:
|
2024-01-10 16:54:41 +01:00
|
|
|
node-version: v20.10.0
|
2021-08-16 04:24:33 +02:00
|
|
|
- name: Install Dependencies, Test, and Build
|
|
|
|
run: |
|
2021-10-06 05:15:46 +02:00
|
|
|
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
2021-10-06 04:40:51 +02:00
|
|
|
yarn ci
|
2021-08-16 04:24:33 +02:00
|
|
|
env:
|
2023-01-31 03:12:55 +01:00
|
|
|
CI: true
|