Release version 2.3.9 #358
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: Build and Test | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
concurrency: ci-${{ github.ref }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Run linter | |
run: npm run lint | |
- name: Run type checker | |
run: npm run type-check | |
# - name: Run tests | |
# run: npm run test | |
- name: Build for Firefox | |
run: npm run build:firefox | |
- name: Clean up | |
run: npm run clean | |
- name: Build for Chromium | |
run: npm run build:chromium |