Ability refresh the table and change country/language on keywords tabel #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- "main" | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "latest" | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: npm install | |
- id: build-publish | |
uses: bitovi/[email protected] | |
with: | |
build_command: npm run build-storybook | |
path: storybook-static | |
checkout: false |