mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-16 12:51:39 +00:00
36 lines
616 B
YAML
36 lines
616 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'false'
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.3.1'
|
|
|
|
- name: Test
|
|
run: |
|
|
corepack enable
|
|
yarn install --immutable
|
|
yarn build
|
|
yarn test
|
|
shell: bash
|
|
|
|
- name: Upload Coverage Reports to Codecov
|
|
uses: codecov/codecov-action@v3
|