Skip to content

refactor(ci): to not use circleci but only github #4

refactor(ci): to not use circleci but only github

refactor(ci): to not use circleci but only github #4

Workflow file for this run

name: Quality
on:
push:
branches:
- master
pull_request:
jobs:
testing:
name: Regression Testing
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/ci
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- name: Build
run: pnpm build
- uses: oNaiPs/secrets-to-env-action@v1
with:
secrets: ${{ toJSON(secrets) }}
- name: Test (with coverage)
run: pnpm test:coverage:ci
- name: Integration tests
run: pnpm test:integration