ci: adjust naming in workflows (#88)

* ci: remove `latest` branch from triggering workflow run

* ci: adjust job names in workflows

* ci: adjust step names in workflow jobs

* docs(readme): adjust naming in the example workflows

* ci: rename `test.yml` workflow to `test.yaml`
This commit is contained in:
Alfi Maulana
2023-11-22 09:59:54 +07:00
committed by GitHub
parent 434fbed336
commit b3dad4773e
3 changed files with 50 additions and 43 deletions

View File

@@ -20,20 +20,20 @@ jobs:
- name: Update Yarn
run: corepack enable && yarn set version stable
- name: Cache deps
- name: Cache Dependencies
uses: actions/cache@v3.3.2
with:
path: .yarn
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install deps
- name: Install Dependencies
run: yarn install
- name: Check lib
- name: Check Package
run: yarn check
- name: Bundle dist
- name: Bundle Package
run: yarn bundle
- name: Check diff
- name: Check Differences
run: git diff --exit-code HEAD