Allow custom paramsSerializer
to be able to implement React Native …
#140
This file contains 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: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- run: npm run ci-lint | |
- run: npm run ci-test | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: coverage/ | |
retention-days: 1 | |