Skip to content

Commit

Permalink
tweak: rename to ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcserv committed Oct 16, 2024
1 parent e84d15c commit 2788bc8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: ci

on:
push:
Expand All @@ -7,20 +7,20 @@ on:
pull_request:

jobs:
lint:
name: lint
ci:
name: ci
runs-on: ubuntu-latest
steps:
- name: Set up pnpm
uses: pnpm/action-setup@v3

- uses: actions/checkout@v2

- name: Setup pnpm
uses: pnpm/action-setup@v3

- name: Cache dependencies
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/pnpm-lock.yaml') }}

- name: Install dependencies
run: pnpm i
Expand Down

0 comments on commit 2788bc8

Please sign in to comment.