Skip to content

Update actions versions #107

Update actions versions

Update actions versions #107

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- run: make lint
- run: make test
- run: make clean build