refactor: Select signal inputs #1229
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: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
# Required by wagoid/commitlint-github-action | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required by wagoid/commitlint-github-action | |
fetch-depth: 0 | |
- name: Install Node v22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install pnpm globally | |
run: npm install -g pnpm | |
- name: Lint commit messages | |
uses: wagoid/commitlint-github-action@v5 | |
with: | |
failOnWarnings: true | |
helpURL: https://github.com/goetzrobin/spartan/blob/main/CONTRIBUTING.md#-commit-message-guidelines | |
format-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required by wagoid/commitlint-github-action | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install PNPM globally | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: lint | |
run: pnpm run lint | |
- name: format | |
run: pnpm nx format:check --base=origin/main | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required by wagoid/commitlint-github-action | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install PNPM globally | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm run build | |
unit: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required by wagoid/commitlint-github-action | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install PNPM globally | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Test | |
run: pnpm run test | |
e2e: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required by wagoid/commitlint-github-action | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install PNPM globally | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Install Cypress | |
run: npx cypress install | |
- name: End-to-end test | |
run: pnpm run e2e |