build(deps): bump ip from 1.1.8 to 1.1.9 #1816
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 and Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main, beta, alpha] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# the Node.js versions to build on | |
node-version: [16.x, 17.x, 18.x] | |
steps: | |
- uses: actions/checkout@main | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@main | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
# - name: Upgrade yarn | |
# run: yarn set version berry | |
- name: Install dependencies | |
run: yarn | |
- name: Lint the project | |
run: yarn run lint | |
- name: Build the project | |
run: yarn run build | |
env: | |
CI: true |