Release @major-tanya/itty-compression v0.1.4 #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send Coverage Report | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node v20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
cache: "npm" | |
- name: Clean Install Dependencies | |
run: npm ci | |
- name: Build project | |
run: npm run build | |
- name: Run Vitest | |
run: npm run coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 |