mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
22 lines
381 B
YAML
22 lines
381 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2.5.1
|
|
with:
|
|
node-version: 20
|
|
cache: 'yarn'
|
|
- run: yarn install
|
|
- run: yarn run test
|