Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

feat: Disable Promise<void> return checks in tests (#223) #224

feat: Disable Promise<void> return checks in tests (#223)

feat: Disable Promise<void> return checks in tests (#223) #224

Workflow file for this run

name: Release
on:
push:
branches:
- beta
- master
permissions: {}
jobs:
release:
name: Publish & Deploy
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Publish to npm
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}