Skip to content

CI: fix puppeteer + run tests one after another (#4355) #2901

CI: fix puppeteer + run tests one after another (#4355)

CI: fix puppeteer + run tests one after another (#4355) #2901

Workflow file for this run

name: Release
on:
push:
branches: ["master"]
jobs:
release:
name: Trigger release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v4
- name: Prepare repository
run: |
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git fetch --prune --unshallow
- name: Enable Corepack
run: corepack enable
- name: Use node
uses: actions/setup-node@v4
with:
cache: yarn
node-version-file: '.tool-versions'
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.ADBLOCKERBOT_APP_ID }}
private-key: ${{ secrets.ADBLOCKERBOT_PRIVATE_KEY }}
- name: Create release
run: yarn release
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}