Skip to content

feat: add alias command as an eventual replacement for the 3 existing… #1195

feat: add alias command as an eventual replacement for the 3 existing…

feat: add alias command as an eventual replacement for the 3 existing… #1195

Workflow file for this run

name: Run Lint and Tests
on:
push:
branches-ignore:
- main
- alpha
- beta
- next
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest] #, windows-latest]
node-version: [20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint files
run: npm run lint
- run: npm run types
- name: Run tests
run: npm run test:ci