github action

This commit is contained in:
Ben Allfree 2022-10-14 01:12:40 -07:00
parent 0eb42c0d6f
commit 9ebfce41ef

19
.github/workflows/pockethost.yaml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Node.js CI
on: [push]
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 prettier:check