Skip to content

fixed casing issue #129

fixed casing issue

fixed casing issue #129

Workflow file for this run

name: Web
on:
push:
branches: [master]
paths: ['services/web/**']
pull_request:
branches: [master]
paths: ['services/web/**']
jobs:
web:
name: Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./services/web
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Cache yarn
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install
- name: Run Lint
run: yarn lint .