forked from SeleniumHQ/selenium-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 982 Bytes
/
Ubuntu.yml
File metadata and controls
39 lines (37 loc) · 982 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
name: 'Test Selenium IDE on ubuntu'
on:
workflow_dispatch:
jobs:
test:
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: install de node
- run : curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - && sudo apt-get install -y nodejs
name: Install pnpm
- uses: pnpm/action-setup@v2
with:
version: 8.11.0
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm -r i
- name: Build side-runner and selenium-ide
run: pnpm run build
- name: Run all tests
run: pnpm run test