Skip to content

feat: release and publish #5

feat: release and publish

feat: release and publish #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
HUSKY: 0
jobs:
checks:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Run lint
run: yarn lint
- name: Run build
run: yarn build
- name: Run tests
run: yarn test