feat: Add slapCommand to bring back the IRC vibe of trout slapping #1751
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- run: yarn install | |
- run: yarn build | |
- run: yarn lint | |
if: ${{ matrix.node-env == 'development' }} | |
- run: yarn test | |
if: ${{ matrix.node-env == 'development' }} | |