diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-03-25 08:20:34 +0100 |
|---|---|---|
| committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-03-25 08:20:34 +0100 |
| commit | abdb43c440e2a1349585c7fbbcd4c5ef38b11604 (patch) | |
| tree | 9c4d37a3eeb902b65f0d8e487106282a11578ec7 /.github/workflows | |
| parent | Additional changes for the merge (diff) | |
| download | sharkey-abdb43c440e2a1349585c7fbbcd4c5ef38b11604.tar.gz sharkey-abdb43c440e2a1349585c7fbbcd4c5ef38b11604.tar.bz2 sharkey-abdb43c440e2a1349585c7fbbcd4c5ef38b11604.zip | |
Revert "Additional changes for the merge"
This reverts commit efb5e1d1cc95b373b00cf2fedfc5b3bd745a1753.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/api.yml | 36 | ||||
| -rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test-misskey-js.yml | 52 |
3 files changed, 0 insertions, 90 deletions
diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml deleted file mode 100644 index 75c547f110..0000000000 --- a/.github/workflows/api.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: API report - -on: [push, pull_request] - -jobs: - report: - - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3.3.0 - - - run: corepack enable - - - name: Setup Node.js - uses: actions/setup-node@v3.6.0 - with: - node-version: 18.x - cache: 'pnpm' - - - name: Install dependencies - run: pnpm i --frozen-lockfile - - - name: Build - run: pnpm --filter misskey-js build - - - name: Check files - run: ls packages/misskey-js/built - - - name: API report - run: pnpm --filter misskey-js api-prod - - - name: Show report - if: always() - run: cat packages/misskey-js/temp/misskey-js.api.md diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1c6615e17f..d65076ebb2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,6 @@ jobs: - backend - frontend - sw - - misskey-js steps: - uses: actions/checkout@v3.3.0 with: @@ -62,7 +61,6 @@ jobs: matrix: workspace: - backend - - misskey-js steps: - uses: actions/checkout@v3.3.0 with: diff --git a/.github/workflows/test-misskey-js.yml b/.github/workflows/test-misskey-js.yml deleted file mode 100644 index b15e704c7f..0000000000 --- a/.github/workflows/test-misskey-js.yml +++ /dev/null @@ -1,52 +0,0 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Test (misskey.js) - -on: - push: - branches: [ develop ] - pull_request: - branches: [ develop ] - -jobs: - test: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - - steps: - - name: Checkout - uses: actions/checkout@v3.3.0 - - - run: corepack enable - - - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3.6.0 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' - - - name: Install dependencies - run: pnpm i --frozen-lockfile - - - name: Check pnpm-lock.yaml - run: git diff --exit-code pnpm-lock.yaml - - - name: Build - run: pnpm --filter misskey-js build - - - name: Test - run: pnpm --filter misskey-js test - env: - CI: true - - - name: Upload Coverage - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./packages/misskey-js/coverage/coverage-final.json |