mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
name: TypeScript Build
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
if: "!contains(github.event.head_commit.message, '[skip ci:ts]')"
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ARCHIVE_NAME: ass-build-${{ github.run_id }}-${{ github.run_number }}
|
|
steps:
|
|
# Checkout repo
|
|
- uses: actions/checkout@v4
|
|
|
|
# Set up Node 20
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
|
|
# Install npm 10 & TypeScript
|
|
- name: Install global packages
|
|
run: npm i -g npm@10 typescript pnpm
|
|
|
|
# Install ass dependencies (including types)
|
|
- name: Install dependencies
|
|
run: pnpm i
|
|
|
|
# Compile the TypeScript files
|
|
- name: Run build script
|
|
run: npm run build
|
|
|
|
# Archive the built files
|
|
- name: Generate archive
|
|
uses: montudor/action-zip@v1
|
|
with:
|
|
args: zip -qq -r ${{ env.ARCHIVE_NAME }} ./
|
|
|
|
# Upload archive as an artifact
|
|
- name: Upload archive
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ${{ env.ARCHIVE_NAME }}
|
|
path: ${{ env.ARCHIVE_NAME }}.zip
|
|
if-no-files-found: error
|