Skip to content

feat: migrate from bulma-pull to @bulvar/bulma #17

feat: migrate from bulma-pull to @bulvar/bulma

feat: migrate from bulma-pull to @bulvar/bulma #17

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: ["15", "14", "12", "10"]
steps:
- name: Code Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: |
npm install -g pnpm@5
pnpm i --frozen-lockfile
env:
HUSKY_SKIP_INSTALL: 1
CI: true
- name: Test
run: pnpm t
env:
CI: true