Skip to content

fix: testsのコマンド修正 #3

fix: testsのコマンド修正

fix: testsのコマンド修正 #3

Workflow file for this run

name: "🧪 Tests"
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: yarn
- name: Run Lint
run: yarn lint
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: yarn
- name: Run Prettier Check
run: yarn format
- uses: stefanzweifel/git-auto-commit-action@v3.0.0
with:
commit_message: formatted by workflow