Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
k2xl committed Jan 28, 2024
1 parent cebd497 commit daa50ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
chunk: ${{ fromJson(needs.setup.outputs['test-chunk-ids']) }}
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: pnpm ci
- name: jest
run: echo $CHUNKS | jq '.[${{ matrix.chunk }}] | .[] | @text' | xargs npx jest --maxWorkers=2
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: npm ci
run: pnpm ci
- uses: oke-py/npm-audit-action@v2
with:
audit_level: moderate
github_token: ${{ secrets.GITHUB_TOKEN }}
create_issues: false
create_issues: false
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Thinky is a platform dedicated to high-quality puzzle games. Solve and optimize
## Dev Environment

### Local install
- Run `npm install`
- Run `pnpm install`
- Create a `.env` file in the root directory containing the following:
```
JWT_SECRET=anything
Expand All @@ -18,14 +18,14 @@ NEW_RELIC_APP_NAME=dummy
NEW_RELIC_LICENSE_KEY=dummy
REVALIDATE_SECRET=whatever
```
- Run `npm run dev` to test changes locally
- Run `pnpm run dev` to test changes locally

### Containerized setup
*Required: Docker installed and running locally.*
- Run `bash startDevEnv.sh` in the root directory

## Tests
- Run `npm test` to run jest tests
- Run `pnpm test` to run jest tests

## Contributing

Expand Down

0 comments on commit daa50ef

Please sign in to comment.