Update vitest; change quote escape in test snapshots. #28
Workflow file for this run
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: Node.js CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "18" | |
- run: yarn install --no-progress --frozen-lockfile | |
- run: yarn test | |
- run: yarn build | |
# - name: Deploy to https://tyrasd.github.io/overpass-turbo/ | |
# if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# publish_dir: ./dist |