Cover mapResponseToForm #48
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: Build and upload static files to the remote server | |
| on: push | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [18, 20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| cache: npm | |
| - name: Install project dependencies | |
| run: npm install | |
| - name: Type checking | |
| run: npm run typecheck | |
| - name: Run tests | |
| run: npm test |