Skip to content

Merge pull request #43 from fe-may23-dreamTeam/fix-carousel #136

Merge pull request #43 from fe-may23-dreamTeam/fix-carousel

Merge pull request #43 from fe-may23-dreamTeam/fix-carousel #136

Workflow file for this run

name: 'lint'
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16.0]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install modules
run: npm install
- name: build project
run: npm run build
- name: lint style code
run: npm run lint