chore(deps): bump undici from 5.22.0 to 5.26.4 #266
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: CI for RIF-Relay-Sample-Dapp | |
on: [push] | |
jobs: | |
lint-and-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
- name: Install dependencies | |
run: npm install --force # FIXME: PP-648 | |
- name: Check Linter bugs | |
run: npm run lint | |
- name: Check Codestyles errors | |
run: npm run format | |
- name: Check build errors | |
run: npm run build |