Skip to content

Add workflow test

Add workflow test #2

Workflow file for this run

name: Animal Farm Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: act ions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: Run Yarn
run: yarn
- name: Run tests
run: yarn test