Skip to content

Fix text import

Fix text import #21

Workflow file for this run

name: 'Release πŸš€'
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Build and install πŸ‘·β€β™€οΈ
run: npm install && npm run build
- name: Publish to npm πŸš€
uses: JS-DevTools/npm-publish@v1
with:
tag: latest
registry: https://registry.npmjs.org/
check-version: true
token: ${{ secrets.NPM_TOKEN }}