Stricten type check #130
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
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Lost Pixel | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.17.0 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build app | |
| run: npm run build | |
| - name: Start server (in background) | |
| run: npm run preview & | |
| - name: Lost Pixel | |
| uses: lost-pixel/lost-pixel@v3.16.0 | |
| env: | |
| LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} |