2023-03-30 00:33:19 +00:00
|
|
|
# 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:
|
2023-09-07 07:38:47 +00:00
|
|
|
node-version: [20.5.1]
|
2023-03-30 00:33:19 +00:00
|
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-25 07:05:02 +00:00
|
|
|
uses: actions/checkout@v4.1.0
|
2023-03-30 00:33:19 +00:00
|
|
|
|
|
|
|
- run: corepack enable
|
|
|
|
|
|
|
|
- name: Setup Node.js ${{ matrix.node-version }}
|
2023-08-19 09:39:39 +00:00
|
|
|
uses: actions/setup-node@v3.8.1
|
2023-03-30 00:33:19 +00:00
|
|
|
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
|