Skip to content

bump version

bump version #62

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["22.12.0"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Run yarn install
uses: borales/actions-yarn@v4
with:
cmd: install --frozen-lockfile
- name: Run lint
uses: borales/actions-yarn@v4
with:
cmd: run lint
- name: Run build
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Run test
uses: borales/actions-yarn@v4
with:
cmd: test