Skip to content

Commit 9bb14b8

Browse files
authored
Merge pull request #14 from currents-dev/feat/prev-ci-build-id-template
[CSR-1806] feat: allow template for the previous-ci-build-id input
2 parents 16c1a11 + 0fc6710 commit 9bb14b8

File tree

7 files changed

+17440
-56
lines changed

7 files changed

+17440
-56
lines changed

.github/workflows/unit-tests.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Unit tests action
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
permissions: read-all
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: 18
24+
25+
- run: npm install --legacy-peer-deps
26+
27+
- name: Run unit tests
28+
run: npm test

0 commit comments

Comments
 (0)