Skip to content

Commit

Permalink
update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
shashilo authored Jul 3, 2024
1 parent c1569c8 commit 78863ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
node-version: ['20.x']

steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v2.5
- uses: pnpm/action-setup@v2.5
with:
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v2.5
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
Expand Down Expand Up @@ -59,15 +59,15 @@ jobs:
NEXT_PUBLIC_APPWRITE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_PROJECT_ID }}
NEXT_PUBLIC_APPWRITE_DATABASE_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_DATABASE_ID }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v2.5
- uses: actions/setup-node@v2.5
with:
node-version: lts/*
- run: npm install -g pnpm && pnpm install
- run: pnpm exec playwright install --with-deps
- run: pnpm exec playwright test
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v2.5
if: always()
with:
name: playwright-report
Expand Down

0 comments on commit 78863ab

Please sign in to comment.