Skip to content

Test

Test #24

Workflow file for this run

name: Test
on:
push:
permissions:
contents: read
env:
NODE_VERSION: "18"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- run: yarn install
- run: yarn run format
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- run: yarn install
- run: yarn run test