Skip to content

Bump vite from 3.2.7 to 3.2.8 #401

Bump vite from 3.2.7 to 3.2.8

Bump vite from 3.2.7 to 3.2.8 #401

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
defaults:
run:
working-directory: packages/steamdown
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- run: yarn build
- name: Test and Generate Coverage
run: yarn test
- name: Upload Coverage Report
if: success() || failure()
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
working-directory: packages/steamdown
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Check Format
run: yarn format-check
- name: Lint
run: yarn lint --max-warnings 0