Skip to content

deprecnearply

deprecnearply #769

Workflow file for this run

name: Test Package
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
- run: cp .env.example .env
- run: yarn
- run: yarn compile
- run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
- run: cp .env.example .env
- run: yarn
- run: yarn compile
- run: yarn test