Bump denoland/setup-deno from 1 to 2 #135
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: bevry | |
'on': | |
- push | |
- pull_request | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node: | |
- '16' | |
- '18' | |
- '20' | |
- '21' | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: vx.x.x | |
- name: Install desired Node.js version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Verify Node.js Versions | |
run: >- | |
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | |
--version && node -e 'console.log(process.versions)' | |
- run: npm run our:setup | |
- run: npm run our:compile | |
- run: npm run our:verify | |
- name: Install targeted Node.js | |
if: ${{ matrix.node != 20 }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Verify Node.js Versions | |
run: >- | |
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | |
--version && node -e 'console.log(process.versions)' | |
- run: npm test | |
publish: | |
if: ${{ github.event_name == 'push' }} | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: vx.x.x | |
- name: Install desired Node.js version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Verify Node.js Versions | |
run: >- | |
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | |
--version && node -e 'console.log(process.versions)' | |
- run: npm run our:setup | |
- run: npm run our:compile | |
- run: npm run our:meta | |
- name: publish to npm | |
uses: bevry-actions/[email protected] | |
with: | |
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }} | |
npmBranchTag: ':next' | |
- name: publish to surge | |
uses: bevry-actions/[email protected] | |
with: | |
surgeLogin: ${{ secrets.SURGE_LOGIN }} | |
surgeToken: ${{ secrets.SURGE_TOKEN }} | |
automerge: | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --squash "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |