feat: save app state in Base64 encoded string in URL #13
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: ci | |
on: | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
web: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: volta-cli/[email protected] | |
- name: Install third party dependencies | |
run: npm ci | |
- name: Check for linting warnings and errors | |
run: npm run lint | |
- name: Run tests | |
run: npm run test | |
- name: Report Coverage | |
if: always() | |
uses: davelosert/[email protected] |