Bump @types/chrome from 0.0.277 to 0.0.278 #107
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: main CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test | |
- name: Move scripts to release folder | |
run: mv dist/ app/ | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sir-chrome-extension | |
path: app | |
build-self-hosted: | |
runs-on: | |
- self-hosted | |
continue-on-error: true # Optional | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test |