Sharkey/.github/workflows/test-misskey-js.yml

53 lines
1.3 KiB
YAML
Raw Normal View History

2021-06-12 16:42:44 +03: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
2023-03-25 09:13:30 +02:00
name: Test (misskey.js)
2021-06-12 16:42:44 +03:00
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
2023-03-25 09:13:30 +02:00
node-version: [18.x]
2021-06-12 16:42:44 +03:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
2023-03-25 09:13:30 +02:00
uses: actions/checkout@v3.3.0
- run: corepack enable
- name: Setup Node.js ${{ matrix.node-version }}
2023-03-25 09:13:30 +02:00
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
2023-03-25 09:13:30 +02:00
cache: 'pnpm'
- name: Install dependencies
2023-03-25 09:13:30 +02:00
run: pnpm i --frozen-lockfile
- name: Check pnpm-lock.yaml
run: git diff --exit-code pnpm-lock.yaml
- name: Build
2023-03-25 09:13:30 +02:00
run: pnpm --filter misskey-js build
- name: Test
2023-03-25 09:13:30 +02:00
run: pnpm --filter misskey-js test
env:
CI: true
- name: Upload Coverage
2023-03-25 09:13:30 +02:00
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./packages/misskey-js/coverage/coverage-final.json