Skip to content

chore(plugin test): added multi rollup versions test #23

chore(plugin test): added multi rollup versions test

chore(plugin test): added multi rollup versions test #23

Workflow file for this run

name: CI/CD
on: [ pull_request, push ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v3
- name: build
run: |
yarn install --frozen-lockfile
yarn run build
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
needs: build
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v3
- name: build
run: |
yarn install --frozen-lockfile
yarn run build
- name: test
run: yarn run test
- name: coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}