mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
tests: Rename workflow to "Upgrade from latest release"
This commit is contained in:
parent
3a5af19492
commit
96208e8239
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: "In-place git pull from master"
|
name: "Upgrade from latest release"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
@ -19,7 +19,7 @@ jobs:
|
||||||
node: [10, 12, 14, 15]
|
node: [10, 12, 14, 15]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout master repository
|
- name: Check out latest release
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
|
@ -60,10 +60,10 @@ jobs:
|
||||||
- name: Run the backend tests
|
- name: Run the backend tests
|
||||||
run: cd src && npm test
|
run: cd src && npm test
|
||||||
|
|
||||||
- name: Git fetch
|
- name: Fetch the new Git commits
|
||||||
run: git fetch
|
run: git fetch
|
||||||
|
|
||||||
- name: Checkout this branch over master
|
- name: Upgrade to the new Git revision
|
||||||
run: git checkout "${GITHUB_SHA}"
|
run: git checkout "${GITHUB_SHA}"
|
||||||
|
|
||||||
- name: Install all dependencies and symlink for ep_etherpad-lite
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
Loading…
Reference in a new issue