Skip to content

イメージエレメントにalt属性を追加する #11

イメージエレメントにalt属性を追加する

イメージエレメントにalt属性を追加する #11

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- main
- 'release/**'
tags-ignore:
- '**'
paths:
- '**.js'
jobs:
lint_and_test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
cache: npm
cache-dependency-path: package-lock.json
- name: Set up npm
run: |
npm ci
- name: Exec lint command
run: |
npm run lint
- name: Exec test command
run: |
npm run test