Skip to content

chore: fix downloads image #48

chore: fix downloads image

chore: fix downloads image #48

Workflow file for this run

name: ci
on:
- pull_request
- push
jobs:
build:
name: Build and Verify
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18.x
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
test:
name: Fast Tests
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version:
- 18.x
- 19.x
- 20.x
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
benchmark:
name: Benchmark
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version:
- 20.x
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run benchmark
release:
name: Release
if: github.ref == 'refs/heads/main' && success()
needs: [build, test]
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.x
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release