Files
pockethost/.github/workflows/pockethost.yaml
Ben Allfree fd2d9ae826 Lint fix
2022-10-28 05:18:18 -07:00

20 lines
383 B
YAML

name: Node.js CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn lint