Skip to content

chore(deps-dev): bump vite from 2.9.14 to 2.9.16 #16

chore(deps-dev): bump vite from 2.9.14 to 2.9.16

chore(deps-dev): bump vite from 2.9.14 to 2.9.16 #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node: ['14']
# typescript: ['4.7.4']
# name: Test with TypeScript ${{ matrix.typescript }} on Node ${{ matrix.node }}
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v2
# with:
# node-version: ${{ matrix.node }}
# - uses: pnpm/[email protected]
# with:
# version: 6.32.1
# - run: pnpm install
# - run: pnpm add typescript@${{ matrix.typescript }}
# - run: pnpm test
publish:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
# needs: [test]
strategy:
matrix:
node: ['14']
name: Build and publish on NPM
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- uses: pnpm/[email protected]
with:
version: 6.32.1
- run: pnpm install
- run: pnpm build
- run: pnpm semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}