Skip to content

v0.1.1

v0.1.1 #2

Workflow file for this run

name: "Run Tests"
on:
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Yarn Package Manager
run: npm install -g yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
test:
name: Run Tests
runs-on: self-hosted
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Yarn Package Manager
run: npm install -g yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn test