build(deps): bump brace-expansion from 1.1.11 to 1.1.12 #32
This file contains hidden or 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: Testing | |
| on: push | |
| jobs: | |
| test: | |
| environment: env | |
| name: Tests passes | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 7 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: "pnpm" | |
| - name: Install modules | |
| run: pnpm i --frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Testing | |
| run: pnpm test | |
| env: | |
| NODE_ENV: "test" | |
| PG_HOST: ${{ vars.PG_HOST }} | |
| PG_PORT: ${{ vars.PG_PORT }} | |
| PG_USER: ${{ vars.PG_USER }} | |
| PG_PASSWORD: ${{ vars.PG_PASSWORD }} | |
| PG_DATABASE: ${{ vars.PG_DATABASE }} | |
| PUBLIC_URL: ${{ vars.PUBLIC_URL }} | |
| JWT_SECRET: ${{ vars.JWT_SECRET }} | |
| PORT: ${{ vars.PORT }} |