Skip to content

chore(release): 0.3.0 #55

chore(release): 0.3.0

chore(release): 0.3.0 #55

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn install
- run: yarn lint
- run: yarn build
- run: yarn test
env:
CI: true