Multimedia Player: added default cc functionality #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches-ignore: | |
| - "dependabot/**" | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x, 20.x] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: Install puppeteer libraries | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgbm1 | |
| - name: Install Grunt | |
| run: npm i -g grunt-cli --force | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - run: npm test | |
| - run: grunt deploy-build |