Skip to content

chore(release): 8.0.3 #59

chore(release): 8.0.3

chore(release): 8.0.3 #59

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20.x']
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install
run: yarn install
- name: Prepare & Build
run: yarn dev:prepare
- name: Lint
run: yarn test:lint
- name: Tests
run: yarn test