Skip to content

[npm]: Bump next from 15.1.2 to 15.1.6 #18

[npm]: Bump next from 15.1.2 to 15.1.6

[npm]: Bump next from 15.1.2 to 15.1.6 #18

Workflow file for this run

name: CI
on: [workflow_call, workflow_dispatch, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/[email protected]
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
unit_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/[email protected]
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/[email protected]
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint