Skip to content

example: re-rendering .for() #76

example: re-rendering .for()

example: re-rendering .for() #76

Workflow file for this run

name: Jest & Standard
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run standard
run: npm run standard
- name: Run Jest
run: npm test