feat(signups): embed now displays coordinator selected prog point #1537
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: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
# File containing the version Spec of the version to use. Examples: .nvmrc, .node-version, .tool-versions. | |
# If node-version and node-version-file are both provided the action will use version from node-version. | |
node-version-file: ".nvmrc" | |
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. | |
# Package manager should be pre-installed | |
# Default: '' | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm lint:ci | |
- run: pnpm test:ci | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/coverage-final.json | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |