Bump ip from 1.1.5 to 1.1.9 #477
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: Compile | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
node14: | |
name: node v17 - tsc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install node v17 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 17 | |
- name: install | |
run: npm install | |
- name: dependencies | |
run: npm ci | |
- name: settings | |
run: cp settings.example.json settings.json | |
- name: tsc | |
uses: icrawl/action-tsc@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
job-name: tsc |