Skip to content

Release 5.0.1

Release 5.0.1 #5

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: yarn --frozen-lockfile --non-interactive --silent --ignore-scripts
- name: Run static analysis
run: yarn test