bump dependencies #108
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 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 | |
node-version: 16.x | |
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build Project | |
run: GITHUB_API_KEY="this_is_stupid" npm run build |