Skip to content

chore(deps-dev): bump @swc/core from 1.3.105 to 1.4.14 #2000

chore(deps-dev): bump @swc/core from 1.3.105 to 1.4.14

chore(deps-dev): bump @swc/core from 1.3.105 to 1.4.14 #2000

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
jobs:
publish:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install nodejs
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: yarn install --production false --frozen-lockfile --ignore-engines
- name: lint
run: yarn run lint
- name: test
run: yarn run test:ci
- name: build
run: yarn run build