Files
zitadel/.github/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 7: cannot unmarshal !!str `${{ git...` into model.RawConcurrency
2023-06-06 11:15:37 +02:00

28 lines
593 B
YAML

name: Test
on:
push:
branches:
- main
- setup-unit-integration-tests
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup pnpm 7
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install Dependencies
run: pnpm i
- name: Test
id: test
run: pnpm test