vylbot-app/.forgejo/workflows/test.yml
Ethan Lane 923348d809
All checks were successful
Test / build (push) Successful in 9s
Migrate to yarn
2024-10-18 18:07:42 +01:00

24 lines
375 B
YAML

name: Test
on:
push:
branches:
- feature/*
- hotfix/*
- renovate/*
jobs:
build:
environment: stage
runs-on: node
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test