v0.4.4 #11
Workflow file for this run
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: Publish | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
name: Publishing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/[email protected] | |
with: | |
deno-version: v1.x # Run with latest stable Deno. | |
- name: Check format | |
run: deno fmt --check | |
- name: Run Linter | |
run: deno lint | |
- name: Run Tests | |
run: deno test --allow-all --coverage=cov/ | |
- name: Generate coverage report | |
run: deno coverage --lcov cov > cov.lcov | |
- name: Upload coverage to Coveralls.io | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} # Generated by GitHub. | |
path-to-lcov: cov.lcov | |
- name: Build NPM Package | |
run: deno run -A scripts/build_npm.ts ${{ github.ref }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16.x" | |
registry-url: "https://registry.npmjs.org" | |
- name: Publish NPM Package | |
run: | | |
cd npm | |
npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Clear README Image Cache | |
run: deno task clear-cache |