Skip to content

V 0.0.2 alpha

V 0.0.2 alpha #11

Workflow file for this run

name: LINTERS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install packages
run: |
corepack enable
yarn set version stable
yarn install
- run: yarn format --check
- run: yarn lint