Skip to content

Merge branch 'main' of https://github.com/toviszsolt/stormflow #19

Merge branch 'main' of https://github.com/toviszsolt/stormflow

Merge branch 'main' of https://github.com/toviszsolt/stormflow #19

Workflow file for this run

name: Run tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install
run: |
yarn add dts-gen
yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: toviszsolt/stormflow