@typesafe-i18n/exporter example - update to latest version #1027
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
name: '@typesafe-i18n/exporter example - update to latest version' | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs everyday at 00:00 | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: packages/exporter/example | |
jobs: | |
check-exporter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.16.1 | |
- name: install dependencies | |
run: npm install --no-save | |
- name: update `typesafe-i18n` dependency | |
run: npm i typesafe-i18n@latest | |
- name: run generator | |
run: npm run typesafe-i18n -- --no-watch | |
- name: run TypeScript compiler | |
run: tsc --noEmit | |
- name: run tests | |
run: npm test | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
branch: update/exporter | |
commit-message: 'chore: update `@typesafe-i18n/exporter` example' | |
title: 'chore: update `@typesafe-i18n/exporter` example' | |
body: > | |
This PR is auto-generated by a GitHub action. |