This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
Add support for renaming a tab #156
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- macos | |
- windows | |
- ubuntu | |
node-version: | |
- '16.x' | |
name: build | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: install dependencies | |
run: npm ci | |
- name: run build | |
run: npm run build | |
- name: run lint | |
run: npm run lint | |
- name: run test | |
run: npm run test | |
- name: upload coverage reports to codecov | |
uses: codecov/codecov-action@v3 |