mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
Merge pull request #3393 from thelounge/github-ci
Add GitHub actions for CI
This commit is contained in:
commit
a564d2f8cb
3 changed files with 43 additions and 2 deletions
36
.github/workflows/build.yml
vendored
Normal file
36
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
node_version: [
|
||||
10.x, # EOL: April 2021
|
||||
12.x, # EOL: April 2022
|
||||
]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
|
||||
- name: Install
|
||||
run: yarn --frozen-lockfile --non-interactive
|
||||
|
||||
- name: Build
|
||||
run: yarn build
|
||||
env:
|
||||
NODE_ENV: production
|
||||
|
||||
- name: Test
|
||||
run: yarn test
|
|
@ -29,6 +29,9 @@
|
|||
<a href="https://travis-ci.com/thelounge/thelounge"><img
|
||||
alt="Travis CI Build Status"
|
||||
src="https://img.shields.io/travis/com/thelounge/thelounge/master.svg?style=flat-square&maxAge=60"></a>
|
||||
<a href="https://github.com/thelounge/thelounge/actions"><img
|
||||
alt="Build Status"
|
||||
src="https://github.com/thelounge/thelounge/workflows/Build/badge.svg"></a>
|
||||
<a href="https://david-dm.org/thelounge/thelounge"><img
|
||||
alt="Dependencies Status"
|
||||
src="https://img.shields.io/david/thelounge/thelounge.svg?style=flat-square&maxAge=3600"></a>
|
||||
|
|
|
@ -21,11 +21,13 @@ describe("Helper", function() {
|
|||
});
|
||||
|
||||
it("should not expand paths not starting with tilde", function() {
|
||||
expect(Helper.expandHome("/tmp")).to.match(/^\/tmp|[A-Z]:\\tmp$/);
|
||||
expect(Helper.expandHome("/tmp")).to.match(/^\/tmp|[a-zA-Z]:\\{1,2}tmp$/);
|
||||
});
|
||||
|
||||
it("should not expand a tilde in the middle of a string", function() {
|
||||
expect(Helper.expandHome("/tmp/~foo")).to.match(/^\/tmp\/~foo|[A-Z]:\\tmp\\~foo$/);
|
||||
expect(Helper.expandHome("/tmp/~foo")).to.match(
|
||||
/^\/tmp\/~foo|[a-zA-Z]:\\{1,2}?tmp\\{1,2}~foo$/
|
||||
);
|
||||
});
|
||||
|
||||
it("should return an empty string when given an empty string", function() {
|
||||
|
|
Loading…
Reference in a new issue