Bump @types/tampermonkey from 4.20.1 to 4.20.3 #710
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Using Node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Update npm version to latest | |
run: npm install -g npm@latest # shop showing warnings about the lockfile | |
- name: Install dependencies | |
run: npm install | |
- name: Compile | |
run: npm run build |