Skip to content

⬆️ upgrade actions/checkout digest to a5ac7e5 #158

⬆️ upgrade actions/checkout digest to a5ac7e5

⬆️ upgrade actions/checkout digest to a5ac7e5 #158

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- name: Install Dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build