Skip to content

Commit

Permalink
Merge branch 'main' into pr
Browse files Browse the repository at this point in the history
  • Loading branch information
pngwn authored Aug 5, 2024
2 parents 0cc77c0 + e32f94a commit 1d82e5f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ on:
types: [opened, synchronize]

jobs:
do-thing:
name: "test-python-${{ matrix.os }}-${{ matrix.test-type == 'flaky' && 'flaky' || 'not-flaky'}}"
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
test-type: ["not flaky", "flaky"]
runs-on: ubuntu-latest
steps:
- run: echo '${{ toJson(github) }}'
create-artifact:
runs-on: ubuntu-latest
needs: do-thing
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: install node
uses: actions/setup-node@v2
with:
node-version: "18"
- name: install pnpm
run: npm install -g pnpm
- name: install dependencies
run: pnpm install
- name: build site
run: pnpm build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact
path: dir/subdir/one.txt
name: vercel
path: .vercel

0 comments on commit 1d82e5f

Please sign in to comment.