chore(deps): bump fastify from 4.15.0 to 4.21.0 #145
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 | |
on: | |
push: | |
branches-ignore: | |
- master | |
workflow_call: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'package.json' | |
cache: 'yarn' | |
- uses: ueokande/setup-firefox@latest | |
with: | |
firefox-version: 78.3.0esr | |
- run: yarn install --immutable | |
- run: yarn tsc | |
- run: yarn lint | |
- run: yarn test | |
- run: yarn package | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ | |
# TODO playwright-webextext does not support MV3 | |
# test-e2e: | |
# name: E2E Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: '18.5.0' | |
# cache: 'yarn' | |
# - uses: ueokande/setup-firefox@latest | |
# with: | |
# firefox-version: 78.3.0esr | |
# - name: Install xsel | |
# run: sudo apt-get install -y --no-install-recommends xsel | |
# - run: yarn install --immutable | |
# - run: yarn build | |
# - run: $(npm bin)/webext-agent install | |
# - run: $(npm bin)/webext-agent create-addon --base-addon . /tmp/vimmatic-mixedin | |
# - name: Run test | |
# run: | | |
# export DISPLAY=:99 | |
# Xvfb -ac :99 -screen 0 1280x1024x24 >/dev/null 2>&1 & | |
# yarn test:e2e --headed |