-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (35 loc) · 815 Bytes
/
test.yml
File metadata and controls
42 lines (35 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build and Test
on:
push:
branches:
- "**"
tags-ignore:
- "**"
env:
SECRETS: ${{ toJSON(secrets) }}
jobs:
run-tests:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: journeyapps-platform/ci-actions
token: ${{ secrets.SHARED_GH_TOKEN }}
path: .github/ci
ref: v1
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
- name: Install Dependencies
uses: ./.github/ci/actions/npm-install
with:
client: pnpm
- name: Test
run: pnpm test