fix: lang='tsx'
doesn't work for Vue 3 SFC
#242
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
name: Node.js CI | |
on: | |
push: | |
branches: | |
- master | |
- next | |
paths: | |
- '**' | |
- '!**.md' | |
pull_request: | |
branches: | |
- master | |
- next | |
paths: | |
- '**' | |
- '!**.md' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
node: [14, 16, 18] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install Project Dependencies | |
run: yarn --frozen-lockfile | |
- name: Test | |
run: yarn test |