Skip to content

fix: set package publishConfig.access to public #5

fix: set package publishConfig.access to public

fix: set package publishConfig.access to public #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
CI:
# if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v1
with:
node-version: 18.x
- name: restore cache
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-modules
- name: install
run: yarn --check-files --frozen-lockfile --non-interactive
- name: build
run: yarn build
- name: cache build
uses: actions/cache@v2
with:
path: dist
key: ${{ runner.os }}-dist
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}