chore: bump to v0.30.1 (#636) #1883
Workflow file for this run
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: tests | |
on: | |
push: | |
branches: | |
- master | |
- release | |
- release-candidate | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- master | |
- release | |
- release-candidate | |
jobs: | |
test: | |
runs-on: 'ubuntu-latest' | |
timeout-minutes: 40 # default is 360 | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Install gettext | |
run: sudo apt-get install gettext | |
- name: Check version | |
run: make check_version | |
- name: i18n | |
run: make i18n | |
- name: Linter | |
run: npm run lint | |
- name: Pot file | |
run: make check_pot | |
- name: Po file | |
run: make check_po |