Skip to content

release: v2.6.1

release: v2.6.1 #1425

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches:
- master
- 'maint-**'
- 'feature/**'
jobs:
Tests:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x, 16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install & Build
run: |
npm install
npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Test build
run: npm run build
- name: Run translations test
run: ./run-i18n-tests.sh