mirror of
https://github.com/NickKaramoff/shareon
synced 2025-03-10 00:10:15 +01:00
31 lines
500 B
YAML
31 lines
500 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
FORCE_COLOR: 2
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
- name: Install dependencies
|
|
run: pnpm install --ignore-scripts
|
|
- name: Build
|
|
run: pnpm run build
|