Skip to content

Bump rexml from 3.2.5 to 3.4.2 in /docs #149

Bump rexml from 3.2.5 to 3.4.2 in /docs

Bump rexml from 3.2.5 to 3.4.2 in /docs #149

Workflow file for this run

name: CICD
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Use cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
- name: Build assets
run: npm run build
- name: Test assets
run: npm run test