Skip to content

Add publish action

Add publish action #25

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 18
- name: yarn install
run: |
yarn install
- name: yarn test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn test