Skip to content

Updated changelog and formatted changelog #1720

Updated changelog and formatted changelog

Updated changelog and formatted changelog #1720

Workflow file for this run

name: Extension tests
on: push
jobs:
extension_tests:
name: Extensions tests
env:
CI: true
strategy:
matrix:
node-version: [18.x]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
submodules: "true"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Lint source
run: |
npm run ci:all
npm run eslint-check
- name: Run prettier if not Windows
if: matrix.os != 'windows-latest'
run: npm run prettier-check
- name: Setup backend
run: |
cd backend
npm run setup
chmod -R +x cli
cd ..
- name: Unit tests
uses: GabrielBB/[email protected]
with:
run: npm test
- name: Integration tests
uses: GabrielBB/[email protected]
with:
run: npm run test-integration-only integration