Skip to content

build(ci): skip tests on publish #10

build(ci): skip tests on publish

build(ci): skip tests on publish #10

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: project - install
run: yarn --frozen-lockfile
- name: lint
run: yarn lint