Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

v0.4.0-beta.1 Release #205

v0.4.0-beta.1 Release

v0.4.0-beta.1 Release #205

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn run test
- name: Lint
run: yarn run lint
- name: Code format
run: yarn run prettier
- name: build
run: yarn run build