Skip to content

add .github/workflows/verify.yml #6

add .github/workflows/verify.yml

add .github/workflows/verify.yml #6

Workflow file for this run

name: verify
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Run yarn install
run: yarn install --frozen-lockfile
- name: Run verify
run: yarn verify