Skip to content

chore: add Lost Pixel Config #90

chore: add Lost Pixel Config

chore: add Lost Pixel Config #90

Workflow file for this run

name: 'Lint & Test'
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
pull-requests: read
statuses: write
jobs:
main:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Run Linters
run: npm run lint
- name: Run Unit Tests
run: npm test