Updated project to include build for webviews #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI Suite | |
on: | |
push | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
name: Node Tests | |
strategy: | |
matrix: | |
node-version: [ 22.x ] | |
os: [ sfdc-hk-ubuntu-22.04-arm-xlarge ] | |
steps: | |
- name: Set up Xorg Server | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y xorg xserver-xorg | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm test |