Add .forgejo/workflows/test.yml
Some checks failed
Run Tests on Code / test (push) Has been cancelled
Some checks failed
Run Tests on Code / test (push) Has been cancelled
This commit is contained in:
parent
1f87b49c15
commit
307048eb59
1 changed files with 35 additions and 0 deletions
35
.forgejo/workflows/test.yml
Normal file
35
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
name: 'Run Tests on Code'
|
||||||
|
author: 'Neshura'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checking Out Repository Code
|
||||||
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
|
-
|
||||||
|
name: Get Yarn Cache Directory
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
|
-
|
||||||
|
name: Set Up Yarn Cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-yarn-
|
||||||
|
-
|
||||||
|
name: Install Dependencies
|
||||||
|
run: yarn install
|
||||||
|
-
|
||||||
|
name: Run Linter
|
||||||
|
run: yarn lint
|
Loading…
Reference in a new issue