Thanks to visit codestin.com
Credit goes to github.com

Skip to content

haha whoops

haha whoops #448

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source
# code across multiple Node.js versions, and lint the project.
name: Build & Lint
on: push
env:
node-version: "22"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
- name: Build and test
run: |
corepack enable
yarn install --immutable
yarn run test