Skip to content

feat: update ci deps #4

feat: update ci deps

feat: update ci deps #4

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18' ]
name: Node.js ${{ matrix.node }}
steps:
- name: Build & Test
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
# Temporarily disabled until problem with type:module has been resolved
# - run: npm audit --audit-level=moderate
- run: npm ci
- run: npm run lint
- run: npm run pretty
- run: npm run build
- run: npm test
- run: npm run e2e