Skip to content

feat: Add slapCommand to bring back the IRC vibe of trout slapping #1746

feat: Add slapCommand to bring back the IRC vibe of trout slapping

feat: Add slapCommand to bring back the IRC vibe of trout slapping #1746

Workflow file for this run

name: CI
on: pull_request
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-env: [ 'development', 'production' ]
env:
NODE_ENV: ${{ matrix.node-env }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn lint
if: ${{ matrix.node-env == 'development' }}
- run: yarn test
if: ${{ matrix.node-env == 'development' }}