Skip to content

複数のログを表示 #339

複数のログを表示

複数のログを表示 #339

Workflow file for this run

name: Software CI
on:
push:
branches: [master, develop]
paths:
- ".github/workflows/software_ci.yml"
- "software/src/**"
pull_request:
types: [opened, synchronize]
branches: [master, develop]
paths:
- "software/src/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- uses: bahmutov/npm-install@v1
with:
working-directory: software
- run: yarn lint
working-directory: software