Skip to content

fix: vue preprocessor may replace wrong code (#135) #428

fix: vue preprocessor may replace wrong code (#135)

fix: vue preprocessor may replace wrong code (#135) #428

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn install --frozen-lockfile --non-interactive
- name: Test
run: yarn test
- name: Check formatting
run: yarn format:check