Fix image size checking #75
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| js-tests: | |
| name: JavaScript tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' | |
| - run: npm ci | |
| - run: npm test | |
| call-tests: | |
| name: Extension tests | |
| uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x | |
| with: | |
| EXTNAME: vse/lightbox # Your extension vendor/package name | |
| CODECOV: 1 # Run code coverage via codecov? 1 or 0 | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not change this |