Skip to content

chore(deps): bump next from 14.1.1-canary.18 to 15.0.0-canary.158 #10

chore(deps): bump next from 14.1.1-canary.18 to 15.0.0-canary.158

chore(deps): bump next from 14.1.1-canary.18 to 15.0.0-canary.158 #10

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build_and_lint:
name: Build and Lint
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
TURBO_REMOTE_ONLY: true
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: yarn
cache-dependency-path: "yarn.lock"
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint Code
run: yarn lint