Skip to content

ci(test): πŸ‘· run test workflow on every push #29

ci(test): πŸ‘· run test workflow on every push

ci(test): πŸ‘· run test workflow on every push #29

Workflow file for this run

name: tests
on:
push:
workflow_dispatch:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Use Node.js 20.6.0
uses: actions/setup-node@v4
with:
node-version: 20.6.0
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3
- name: πŸ“¦ Install
run: npm i
- name: βœ… Unit test
run: npm t
- name: πŸ“Š Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
e2e-tests:
uses: oclif/github-workflows/.github/workflows/unitTest.yml@main