Bump elliptic from 6.5.7 to 6.6.0 (#23) #137
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 | |
- pull_request | |
jobs: | |
ci: | |
name: Node.js ${{ matrix.node-version }} on ${{ matrix.runs-on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
runs-on: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node-version: | |
- 20 | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: ${{ matrix.runs-on }}-${{ hashFiles('yarn.lock') }} | |
- name: Install | |
run: | | |
yarnpkg install --frozen-lockfile | |
- name: Build | |
run: | | |
./node_modules/.bin/grafana-toolkit plugin:ci-build | |
- name: Keep build results | |
run: | | |
./node_modules/.bin/grafana-toolkit plugin:ci-build --finish | |
- name: Package | |
if: | | |
startsWith(matrix.runs-on, 'ubuntu-') | |
run: | | |
GRABPL_VERSION=0.5.0 | |
wget https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${GRABPL_VERSION}/grabpl | |
chmod +x grabpl | |
sudo mv grabpl /usr/local/bin/ | |
./node_modules/.bin/grafana-toolkit plugin:ci-package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.runs-on }}-nodejs-${{ matrix.node-version }} | |
path: ci |