mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
thelounge: Build from git repository
'yarn global add https://github.com/thelounge/thelounge.git' doesn't work because we now need to compile TypeScript to JavaScript when not downloading from the package manager
This commit is contained in:
14
.github/workflows/test-stable.yml
vendored
14
.github/workflows/test-stable.yml
vendored
@ -1162,8 +1162,18 @@ jobs:
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: yarn global add thelounge@4.4.0
|
||||
- name: Checkout TheLounge
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: thelounge
|
||||
ref: v4.4.0
|
||||
repository: thelounge/thelounge
|
||||
- name: Build TheLounge
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/thelounge
|
||||
yarn install
|
||||
NODE_ENV=production yarn build
|
||||
ln -s $(pwd)/index.js ~/.local/bin/thelounge
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get install atheme-services faketime
|
||||
- name: Install irctest dependencies
|
||||
|
Reference in New Issue
Block a user