mirror of
https://github.com/Newnetirc/thelounge-theme-newnet.git
synced 2026-06-14 15:40:18 +00:00
22 lines
342 B
YAML
22 lines
342 B
YAML
name: Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
|
|
- name: Install
|
|
run: yarn --frozen-lockfile --non-interactive
|
|
|
|
- name: Test
|
|
run: yarn test
|