Ethan Lane
d85c812fbb
- Update the forgejo actions workflow to rsync to the server on push to the master/develop branch #204 Reviewed-on: #207 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
25 lines
No EOL
394 B
YAML
25 lines
No EOL
394 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/*
|
|
- hotfix/*
|
|
- renovate/*
|
|
- dependabot/*
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: node
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- run: yarn test
|
|
- run: yarn lint |