more more deps #118
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: Build Test | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup node with cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: pnpm | |
- name: NO CRLF | |
run: pnpm dlx crlf-phobia * | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build everything | |
run: pnpm build | |
env: | |
INTERNAL_SECRET: mockvalueforci | |
JWT_SECRET: mockvalueforci | |
- name: Lint | |
run: pnpm lint | |
- name: Test | |
run: pnpm test |