-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Updated `STARTING.md` with corrected typos, updated Node.js version requirements, refined setup commands, and clarified login details. - Adjusted the last commit hash and streamlined instructions for setting up the development environment. - **Chores** - Updated `.github/workflows/node.yml` to fix Node.js version to 22.x, and improved comments for clarity. - Modified `package.json` by adding a new test script and removing outdated dependencies. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
Showing
28 changed files
with
19 additions
and
1,358 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,39 +7,30 @@ on: | |
env: | ||
MCO_LOG_LEVEL: warn | ||
EXTERNAL_HOST: mcouniverse.com | ||
PRIVATE_KEY_FILE: thebeast/data/private_key.pem | ||
CERTIFICATE_FILE: thebeast/data/mcouniverse.crt | ||
PUBLIC_KEY_FILE: thebeast/data/pub.key | ||
PRIVATE_KEY_FILE: thebeast/data/private_key.pem # These secrets are stored in the repository and are safe to "leak" | ||
CERTIFICATE_FILE: thebeast/data/mcouniverse.crt # These secrets are stored in the repository and are safe to "leak" | ||
PUBLIC_KEY_FILE: thebeast/data/pub.key # These secrets are stored in the repository and are safe to "leak" | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x, 21.x] | ||
|
||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
- name: Use Node.js 22.x | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
# - name: Resolve Outdated Comments | ||
# uses: Ardiannn08/[email protected] | ||
# with: | ||
# token: ${{ secrets.GH_TOKEN }} | ||
# mode: "delete" | ||
node-version: 22.x | ||
- name: Install and test | ||
run: | | ||
npm install | ||
npm run test --workspaces --if-present | ||
npm test | ||
env: | ||
CODECOV_UPLOAD_BUNDLE_TOKEN: ${{ secrets.CODECOV_UPLOAD_BUNDLE_TOKEN }} | ||
- name: Codecov | ||
if: ${{ always() }} | ||
if: ${{ always() }} # using always() to always run this step because i am uploading test results and coverage in one step | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
run: | | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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
Oops, something went wrong.