Skip to content

revert(ci): don't deploy examples on push #38

revert(ci): don't deploy examples on push

revert(ci): don't deploy examples on push #38

Workflow file for this run

name: CI
on: [push]
jobs:
test-coverage-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v3
- name: Use node@${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Execute unit tests
run: yarn test
- name: Execute coverage
run: yarn coverage
- name: Build
run: yarn build