Skip to content

ci: set yarn cache on workflows #21

ci: set yarn cache on workflows

ci: set yarn cache on workflows #21

Workflow file for this run

name: tests
on:
release:
types: [created]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
name:
description: 'reason'
required: false
default: ''
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js v18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn test