feat: remove palindromes #32
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: dnaarchive - pipelines | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: git checkout | |
uses: actions/checkout@v2 | |
- name: pnpm install | |
run: pnpm install --frozen-lockfile | |
- name: lint | |
run: pnpm run lint | |
prettier: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: git checkout | |
uses: actions/checkout@v2 | |
- name: pnpm install | |
run: pnpm install --frozen-lockfile | |
- name: prettier | |
run: pnpm run prettier |