Skip to content

chore: add release.yml #6

chore: add release.yml

chore: add release.yml #6

Workflow file for this run

name: test
on:
push:
branches:
- main
jobs:
jest-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "main"
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm run test
- run: echo "success"