Skip to content

chore(images): added all respective images to project #7

chore(images): added all respective images to project

chore(images): added all respective images to project #7

Workflow file for this run

name: Next.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Linter
run: npm run lint
- name: Run Fix
run: npm run fix
- name: Save Lint and Fix Results
uses: actions/upload-artifact@v2
with:
name: lint-fix-results
path: |
.eslintcache
**/*.log