feat: allow linking and unlinking existing accounts to 3rd party auth… #639
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: Lint | |
on: [push, pull_request] | |
jobs: | |
code_quality: | |
name: Code quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@just | |
- uses: taiki-e/install-action@dprint | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: typos-cli | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: | | |
pnpm install | |
- name: Show version information | |
shell: bash | |
run: | | |
just --version | |
dprint --version | |
typos --version | |
pnpm --version | |
- name: Lint codebase | |
shell: bash | |
run: | | |
just check | |