Skip to content

Merge pull request #40 from labd/emptySuggestions #35

Merge pull request #40 from labd/emptySuggestions

Merge pull request #40 from labd/emptySuggestions #35

Workflow file for this run

name: Release
on: [push]
env:
CI: true
jobs:
lint-test-build:
name: Lint, test and build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: true
- name: Check formatting and typing
run: pnpm check
- name: Test
run: pnpm run test:ci
- name: Build
run: pnpm build
release:
timeout-minutes: 15
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: lint-test-build
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: true
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Create and publish versions
uses: changesets/action@v1
with:
title: 'Release new version'
commit: 'update version'
publish: pnpm publish:ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}