Skip to content

ci: upgrade actions to v4 #36

ci: upgrade actions to v4

ci: upgrade actions to v4 #36

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: yarn-cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Build and test the library
run: |
yarn
yarn prepack
yarn test