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
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-11 05:37:35 +01:00
|
|
|
node-version: [v16.14.0]
|
2021-08-16 04:24:33 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- 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:
|
|
|
|
CI: true
|