cryptgeon/.github/workflows/test.yaml

40 lines
783 B
YAML
Raw Normal View History

2022-11-02 13:26:57 +01:00
name: Test
on:
2022-11-02 13:26:57 +01:00
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Node
2023-05-25 23:29:05 +02:00
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
2023-05-25 23:29:05 +02:00
cache: 'pnpm'
node-version-file: '.nvmrc'
2022-11-14 16:16:50 +01:00
# Docker
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
2022-11-14 16:16:50 +01:00
with:
install: true
- name: Prepare
run: |
pnpm install --frozen-lockfile
pnpm exec playwright install --with-deps
pnpm run test:prepare
2022-11-14 16:16:50 +01:00
- name: Run your tests
run: pnpm test
- uses: actions/upload-artifact@v3
with:
name: test-results
path: test-results