Skip to content

chore(deps-dev): bump @swc/core from 1.5.25 to 1.6.1 #29

chore(deps-dev): bump @swc/core from 1.5.25 to 1.6.1

chore(deps-dev): bump @swc/core from 1.5.25 to 1.6.1 #29

Workflow file for this run

name: CI-unitest
on:
push:
branches:
- main
- major
- minor
# Only consider those paths to trigger the action
paths:
- 'packages/**'
- 'package.json'
- '*.lock'
- '.yarnrc.yml'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
pull_request:
branches:
- main
- major
- minor
types:
- opened
- synchronize
- reopened
# Only consider those paths to trigger the action
paths:
- 'packages/**'
- 'package.json'
- '*.lock'
- '.yarnrc.yml'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: 📥 Install Dependencies
run: yarn --frozen-lockfile
- name: Linter
run: |
yarn lint
# - name: Unit tests
# run: |
# yarn test
- name: Build
run: |
yarn build