Skip to content

add CI run

add CI run #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- '**'
tags:
- '!**'
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run tests, lint and verify package integrity
run: yarn run validate