tests: remove superfluous whitespace characters from test files #208
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: Alpine Linux | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: alpine:latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Node.js + NPM | |
| run: | | |
| apk update | |
| apk add nodejs npm | |
| - name: Install build dependencies for Node.js canvas | |
| run: | | |
| apk add g++ make pkgconf | |
| apk add cairo-dev giflib-dev jpeg-dev pango-dev | |
| - name: Install Node.js packages | |
| run: | | |
| cd export-server | |
| npm install |