@typesafe-i18n/importer example - update dependencies #106
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/importer example - update dependencies' | |
on: | |
schedule: | |
- cron: '0 20 * * 0' # Runs at 20:00 on Sunday | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: packages/importer/example | |
jobs: | |
check-importer: | |
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 all dependencies | |
run: npm up | |
- name: run import | |
run: npm run i18n:import | |
- name: run TypeScript compiler | |
run: tsc --noEmit | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
branch: update/importer-dependencies | |
commit-message: 'chore: update `@typesafe-i18n/importer` example dependencies' | |
title: 'chore: update `@typesafe-i18n/importer` example dependencies' | |
body: > | |
This PR is auto-generated by a GitHub action. |