fix: update CHANGELOGS and package.json #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information see: https://docs.github.com/en/actions/ | |
name: Project CI | |
on: | |
push: | |
branches: ['main'] | |
paths: ['**.ts', '**.tsx', '**.vue', '.github/workflows/**', 'package.json', 'yarn.lock'] | |
pull_request: | |
branches: ['main'] | |
paths: ['**.ts', '**.tsx', '**.vue', '.github/workflows/**', 'package.json', 'yarn.lock'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20', 'latest'] | |
name: Node ${{ matrix.node-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build web components | |
run: yarn each build | |
- name: Tests | |
run: yarn each test:unit |