Skip to content

fix single package tag (#469) #1319

fix single package tag (#469)

fix single package tag (#469) #1319

Workflow file for this run

name: "Main"
on:
pull_request:
push:
tags:
- "*"
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false # don't cancel all jobs if some of them failed
matrix:
node: ["20"]
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn lint
- run: yarn test