This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
build(deps-dev): bump @types/node from 18.15.11 to 20.4.8 #380
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: "Coverage" | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on pull request or push events but only for the master branch | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn | |
- name: Run the tests | |
run: yarn test --coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |