feat: iso2 for eu #700
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: Run | |
on: | |
schedule: | |
- cron: '30 1 1,15 * *' | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Start | |
run: npm start | |
- name: Commit | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git add data.csv | |
git add data_*.csv | |
git commit -m "chore: Data generated" --allow-empty | |
git push |