Replace QuotJs with Argo Serde #99
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install Dependencies | |
run: npm install | |
- name: Install Spago Dependencies | |
run: npx spago install | |
- name: Test Purescript | |
run: npm run test:purs | |
- name: Test Components | |
run: npm run test:unit | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
start: npm run serve | |
browser: chrome |