-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: keyword in package.json * chore: upgrade runtime and packages, add workflow * fix: pull request links * fix: formatting
- Loading branch information
1 parent
5c33e4f
commit d6d3c8b
Showing
7 changed files
with
4,073 additions
and
4,182 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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Main 🚢 | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install package manager (from package.json) | ||
run: | | ||
corepack enable | ||
corepack install | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
cache: 'yarn' | ||
|
||
- name: Install deps | ||
run: yarn install --frozen-lockfile --immutable | ||
|
||
# - name: Tests | ||
# run: yarn coverage | ||
|
||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/codecov-action@v3 | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
# - name: Code styles | ||
# run: yarn lint | ||
|
||
- name: Formatting | ||
run: yarn prettier --check . | ||
|
||
# - name: Typecheck | ||
# run: yarn typecheck | ||
|
||
- name: Build | ||
run: yarn build | ||
env: | ||
NODE_ENV: production |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: PR 🚀 | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install package manager (from package.json) | ||
run: | | ||
corepack enable | ||
corepack install | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
cache: 'yarn' | ||
|
||
- name: Install deps | ||
run: yarn install --frozen-lockfile --immutable | ||
|
||
# - name: Tests | ||
# run: yarn coverage | ||
|
||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/codecov-action@v3 | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
# - name: Code styles | ||
# run: yarn lint | ||
|
||
- name: Formatting | ||
run: yarn prettier --check . | ||
|
||
# - name: Typecheck | ||
# run: yarn typecheck | ||
|
||
- name: Build | ||
run: yarn build | ||
env: | ||
NODE_ENV: production |
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 |
---|---|---|
@@ -1 +1,5 @@ | ||
compressionLevel: mixed | ||
|
||
enableGlobalCache: false | ||
|
||
nodeLinker: node-modules |
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 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.