mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
Add proper names to github action steps
This commit is contained in:
parent
eb6d8d4f83
commit
9eb08420b6
@ -17,12 +17,14 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
node-version: [12.x, 14.x, 16.x]
|
node-version: [12.x, 14.x, 16.x]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- run: |
|
- name: Install dependencies and run tests
|
||||||
|
run: |
|
||||||
Xvfb :99 -screen 0 1024x768x16 &
|
Xvfb :99 -screen 0 1024x768x16 &
|
||||||
export DISPLAY=:99
|
export DISPLAY=:99
|
||||||
npm install
|
npm install
|
9
.github/workflows/codecov-test-suites.yml
vendored
9
.github/workflows/codecov-test-suites.yml
vendored
@ -13,13 +13,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
- run: |
|
uses: actions/checkout@v2
|
||||||
|
- name: Install dependencies and run coverage
|
||||||
|
run: |
|
||||||
Xvfb :99 -screen 0 1024x768x16 &
|
Xvfb :99 -screen 0 1024x768x16 &
|
||||||
export DISPLAY=:99
|
export DISPLAY=:99
|
||||||
npm ci
|
npm ci
|
||||||
npm run test:coverage
|
npm run test:coverage
|
||||||
- uses: codecov/codecov-action@v1
|
- name: Upload coverage results to codecov
|
||||||
|
uses: codecov/codecov-action@v1
|
||||||
with:
|
with:
|
||||||
file: ./coverage/lcov.info
|
file: ./coverage/lcov.info
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
|
6
.github/workflows/enforce-changelog.yml
vendored
6
.github/workflows/enforce-changelog.yml
vendored
@ -11,8 +11,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
- uses: dangoslen/changelog-enforcer@v1.6.1
|
uses: actions/checkout@v2
|
||||||
|
- name: Enforce changelog️
|
||||||
|
uses: dangoslen/changelog-enforcer@v1.6.1
|
||||||
with:
|
with:
|
||||||
changeLogPath: "CHANGELOG.md"
|
changeLogPath: "CHANGELOG.md"
|
||||||
skipLabels: "Skip Changelog"
|
skipLabels: "Skip Changelog"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user