mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 01:46:14 -04:00
timeouts
This commit is contained in:
parent
622a2be177
commit
96032ad361
2 changed files with 7 additions and 13 deletions
16
.github/workflows/collaboration.yml
vendored
16
.github/workflows/collaboration.yml
vendored
|
@ -24,18 +24,11 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
- uses: actions/cache@v2
|
||||
id: cache
|
||||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
|
@ -45,7 +38,8 @@ jobs:
|
|||
shell: msys2 {0}
|
||||
run: src/bin/installDeps.sh
|
||||
|
||||
- name: Install Cypress
|
||||
- name: Install Dependencies
|
||||
if: steps.cache.outputs.cache-hit != 'true'
|
||||
run: npm install cypress -g
|
||||
|
||||
- name: Run Etherpad & Tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue