2.0.0, 2.1.0: manifest v3 support #937
This file contains hidden or 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: | |
pull_request: | |
push: | |
branches: | |
- master | |
- devtools-early-access | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install | |
run: npm ci && npm --prefix=packages/shell-chrome-v3 ci | |
env: | |
CYPRESS_INSTALL_BINARY: "0" | |
- name: build | |
# need npm run because we have shell commands inside this script | |
run: npm run package | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: alpine-devtools | |
path: dist | |
- name: unit tests | |
run: node --run test | |
- name: typecheck | |
run: node --run typecheck | |
- name: check formatting | |
run: node --run format | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply formatting changes | |
# see https://github.com/bahmutov/cypress-gh-action-split-install | |
- run: npx cypress cache path && npx cypress cache list | |
# restore / cache the binary ourselves on Linux | |
# see https://github.com/actions/cache | |
- name: Cache Cypress | |
id: cache-cypress | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/Cypress | |
key: cypress-cache-v1-${{ runner.os }}-${{ hashFiles('**/package.json') }} | |
# install Cypress binary | |
- run: npx cypress install && npx cypress cache list | |
# - name: Devtools@v2 E2E | |
# uses: cypress-io/github-action@v6 | |
# with: | |
# start: node --run start | |
# command: node --run cy:run | |
# working-directory: packages/shell-chrome-v3 | |
# install: false | |
- name: Devtools@v1 E2E | |
uses: cypress-io/github-action@v6 | |
with: | |
start: node --run start:ci | |
command: node --run cy:run | |
install: false |