-
-
Notifications
You must be signed in to change notification settings - Fork 17
56 lines (45 loc) · 1.12 KB
/
test.yml
File metadata and controls
56 lines (45 loc) · 1.12 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Test CI
on:
push:
branches:
- main
pull_request:
permissions:
issues: write
contents: read
id-token: write
jobs:
runner-start:
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v5
with:
aws-region: us-west-2
role-to-assume: arn:aws:iam::800406105498:role/RafaelGSS-nodejs-bench-operations
- name: Checkout
uses: actions/checkout@v5
- name: Start Runner
uses: nodesource/aws-eco-runner@v1.0.0-beta.3
with:
instances_id: '["i-065f0f848eb1615ae"]'
action: 'start'
aws_default_region: 'us-west-2'
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [18, 20, 22, 24, 25.4.0]
env:
CI: true
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test