main-site/.forgejo/workflows/test.yml

40 lines
1.3 KiB
YAML
Raw Normal View History

2023-12-20 07:26:11 +00:00
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
2023-12-20 07:44:25 +00:00
-
name: Test
run: |
echo
VERSION=$(cat package.json | grep -E "\"version\":" | cut -f2- -d= | tr -d \" | tr -d " ")
2023-12-20 07:26:11 +00:00
-
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