Skip to content

chore: attempt to fix cd #3

chore: attempt to fix cd

chore: attempt to fix cd #3

Workflow file for this run

name: lint-and-test
on:
push:
branches:
- "main"
pull_request:
branches:
- main
jobs:
lint-and-test:
runs-on: self-hosted
strategy:
matrix:
node: ["18"]
name: Test on Node ${{ matrix.node }} # @TODO: add multiple ORM versions?
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test