-
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7621c1
commit bcd24d0
Showing
22 changed files
with
16,712 additions
and
15,443 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
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 |
---|---|---|
|
@@ -26,14 +26,14 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'yarn' | ||
cache: 'npm' | ||
|
||
- name: Install dependencies | ||
run: yarn install --immutable | ||
run: npm ci | ||
|
||
- name: Lint | ||
if: matrix['node-version'] == '18.x' | ||
run: yarn run lint | ||
run: npm run lint | ||
|
||
- name: Prepare lint auto-fix patch | ||
if: | | ||
|
@@ -43,7 +43,7 @@ jobs: | |
id: lint | ||
run: | | ||
# Run all lint commands and abort if one has unfixable errors | ||
yarn run lint-fix | ||
npm run lint-fix | ||
git diff --name-only || true | ||
if ! git diff --quiet ; then | ||
echo "has changes" | ||
|
@@ -65,13 +65,13 @@ jobs: | |
path: fix.patch | ||
|
||
- name: Test | ||
run: yarn run test | ||
run: npm run test | ||
|
||
- name: Generate coverage report | ||
if: matrix['node-version'] == '18.x' | ||
run: | | ||
yarn run coverage | ||
yarn run record-coverage | ||
npm run coverage | ||
npm run record-coverage | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@master | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
node-version: 20 | ||
cache: 'yarn' | ||
cache: 'npm' | ||
|
||
- uses: docker/setup-buildx-action@v3 | ||
- uses: docker/setup-qemu-action@v3 | ||
|
@@ -61,8 +61,8 @@ jobs: | |
- name: Pre-build frontend and backend files | ||
run: | | ||
yarn install --immutable | ||
yarn build | ||
npm ci | ||
npm run build | ||
- name: build+push | ||
uses: docker/build-push-action@v5 | ||
|
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
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 |
---|---|---|
|
@@ -29,10 +29,10 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'yarn' | ||
cache: 'npm' | ||
|
||
- name: Install dependencies | ||
run: yarn install --immutable | ||
run: npm ci | ||
|
||
- name: Initialize NPM config | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -25,11 +25,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: 20.x | ||
cache: 'yarn' | ||
cache: 'npm' | ||
|
||
- name: Update dependency | ||
run: | | ||
yarn add ${{github.event.inputs.dep}}${{github.event.inputs.version}} | ||
npm install ${{github.event.inputs.dep}}${{github.event.inputs.version || 'latest'}} | ||
- name: Check for changes | ||
id: check | ||
run: | | ||
|
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 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
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
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.