Skip to content

⬆️ upgrade actions/checkout digest to 0ad4b8f #144

⬆️ upgrade actions/checkout digest to 0ad4b8f

⬆️ upgrade actions/checkout digest to 0ad4b8f #144

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # 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