mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Merge branch 'yarn-3' of https://github.com/ThatOneCalculator/misskey into yarn-3
This commit is contained in:
commit
abb1e025f5
3 changed files with 13 additions and 7 deletions
|
@ -3,7 +3,6 @@
|
||||||
.travis
|
.travis
|
||||||
.vscode
|
.vscode
|
||||||
.config
|
.config
|
||||||
.yarn
|
|
||||||
Dockerfile
|
Dockerfile
|
||||||
build/
|
build/
|
||||||
built/
|
built/
|
||||||
|
@ -14,3 +13,10 @@ node_modules/
|
||||||
redis/
|
redis/
|
||||||
files/
|
files/
|
||||||
misskey-assets/
|
misskey-assets/
|
||||||
|
.pnp.*
|
||||||
|
.yarn/*
|
||||||
|
!.yarn/patches
|
||||||
|
!.yarn/plugins
|
||||||
|
!.yarn/releases
|
||||||
|
!.yarn/sdks
|
||||||
|
!.yarn/versions
|
||||||
|
|
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- run: corepack enable
|
- run: corepack enable
|
||||||
- run: yarn set version berry
|
- run: yarn set version berry
|
||||||
- run: yarn workspaces foreach install --immutable
|
- run: yarn workspaces foreach install --immutable
|
||||||
- run: yarn workspaces foreach run lint
|
env:
|
||||||
env:
|
|
||||||
YARN_CHECKSUM_BEHAVIOR: update
|
YARN_CHECKSUM_BEHAVIOR: update
|
||||||
|
- run: yarn workspaces foreach run lint
|
||||||
|
|
||||||
|
|
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -39,6 +39,8 @@ jobs:
|
||||||
- run: corepack enable
|
- run: corepack enable
|
||||||
- run: yarn set version berry
|
- run: yarn set version berry
|
||||||
- run: yarn workspaces foreach install --immutable
|
- run: yarn workspaces foreach install --immutable
|
||||||
|
env:
|
||||||
|
YARN_CHECKSUM_BEHAVIOR: update
|
||||||
- name: Check yarn.lock
|
- name: Check yarn.lock
|
||||||
run: git diff --exit-code yarn.lock
|
run: git diff --exit-code yarn.lock
|
||||||
- name: Copy Configure
|
- name: Copy Configure
|
||||||
|
@ -47,8 +49,6 @@ jobs:
|
||||||
run: yarn build
|
run: yarn build
|
||||||
- name: Test
|
- name: Test
|
||||||
run: yarn mocha
|
run: yarn mocha
|
||||||
env:
|
|
||||||
YARN_CHECKSUM_BEHAVIOR: update
|
|
||||||
|
|
||||||
e2e:
|
e2e:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -89,6 +89,8 @@ jobs:
|
||||||
- run: corepack enable
|
- run: corepack enable
|
||||||
- run: yarn set version berry
|
- run: yarn set version berry
|
||||||
- run: yarn workspaces foreach install --immutable
|
- run: yarn workspaces foreach install --immutable
|
||||||
|
env:
|
||||||
|
YARN_CHECKSUM_BEHAVIOR: update
|
||||||
- name: Copy Configure
|
- name: Copy Configure
|
||||||
run: cp .github/misskey/test.yml .config
|
run: cp .github/misskey/test.yml .config
|
||||||
- name: Build
|
- name: Build
|
||||||
|
@ -114,5 +116,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.browser }}-cypress-videos
|
name: ${{ matrix.browser }}-cypress-videos
|
||||||
path: cypress/videos
|
path: cypress/videos
|
||||||
env:
|
|
||||||
YARN_CHECKSUM_BEHAVIOR: update
|
|
||||||
|
|
Loading…
Reference in a new issue