Skip to content

Merge pull request #286 from kawaiioverflow/feature/20241204 #757

Merge pull request #286 from kawaiioverflow/feature/20241204

Merge pull request #286 from kawaiioverflow/feature/20241204 #757

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint