Skip to content

replay

replay #366

Workflow file for this run

# Basic workflow
name: Tests
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: install dependencies
run: yarn install
- name: generate coverage
run: |
yarn coverage
echo done
- name: upload to codecov.io
run: |
ls -lart coverage
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov
echo done