Skip to content

chore(deps): update node.js to v20.19.4 #3360

chore(deps): update node.js to v20.19.4

chore(deps): update node.js to v20.19.4 #3360

Workflow file for this run

name: CI
# Inspiration:
# https://github.com/alexdiliberto/ember-transformicons/blob/master/.github/workflows/ci.yml
on:
pull_request:
push:
# filtering branches here prevents duplicate builds from pull_request and push
branches:
- master
env:
CI: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: volta-cli/action@v4
- name: Install
run: yarn install
- name: ESLint
run: yarn lint:js
# - name: Templates
# run: yarn lint:hbs
- name: Types
run: yarn tsc --noEmit --skipLibCheck
- uses: wagoid/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
name: Release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: yarn install
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn semantic-release