Skip to content

chore: Vue.js の日本語ドキュメントリポジトリの URL を更新 (#130) #159

chore: Vue.js の日本語ドキュメントリポジトリの URL を更新 (#130)

chore: Vue.js の日本語ドキュメントリポジトリの URL を更新 (#130) #159

Workflow file for this run

name: Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and lint
run: |
yarn install
yarn lint:fail
test:
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
yarn install
yarn test