Build [ID:riCDzbRJ3gV-aODapRCte] #22
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
# Builds project | |
name: Build | |
env: | |
NODE_VERSION: 20 | |
on: | |
workflow_dispatch: | |
inputs: | |
id: | |
type: 'string' | |
description: 'Unique identifier for the workflow run. Needed for github-actions-runner' | |
## Required for github-actions-runner | |
run-name: ${{github.workflow}} [ID:${{ inputs.id }}] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Number of commits to fetch. 0 indicates all history. | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: pnpm | |
- name: Run bash commands | |
shell: bash | |
run: | | |
ls -alt | |
# Install deps | |
pnpm install | |
pnpm lint | |
pnpm test | |
pnpm pack && mv adguard-github-actions-runner-*.tgz github-actions-runner.tgz | |
- name: Save archived package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: github-actions-runner.tgz | |
path: ./github-actions-runner.tgz | |
- name: Save build.txt | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build.txt | |
path: ./dist/build.txt |