Skip to content

updated package file and removed release workflow #50

updated package file and removed release workflow

updated package file and removed release workflow #50

Workflow file for this run

name: Lint
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- run: yarn install
- run: yarn lint