mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2025-08-05 05:04:12 -04:00
ci: add GitHub Actions configuration
This commit is contained in:
parent
a40e9a6803
commit
1d509cf15a
2 changed files with 38 additions and 18 deletions
38
.github/workflows/ci.yml
vendored
Normal file
38
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
name: CI
|
||||
|
||||
on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # Fetch all history
|
||||
-
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
- run: npm i -g npm@8.5.5
|
||||
- run: npm ci
|
||||
- run: npm run standards
|
||||
test:
|
||||
needs: [ build ]
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version: [ 14, 16, 'lts/*', 'latest' ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
-
|
||||
name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm i -g npm@8.5.5
|
||||
- run: npm ci # Reinstall the dependencies to ensure they install with the current version of node
|
||||
- run: npm test
|
||||
- name: Coveralls
|
||||
uses: coverallsapp/github-action@v1
|
Loading…
Add table
Add a link
Reference in a new issue