Removed deprecated jcenter() in favor of mavenCentral() #22
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 Build | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
timeout-minutes: 30 # sometimes we have to wait for this to be available since they are actual machines | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
# Install required packages | |
- name: Install packages | |
run: npm i | |
# Run the build script | |
- name: Build | |
run: npm run build | |
# run the verify script | |
- name: Verify | |
run: npm run verify |