Skip to content

chore(deps): update actions/checkout action to v4 #785

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #785

Workflow file for this run

name: Test and build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: lts/*
cache: yarn
- name: Installing
run: yarn --frozen-lockfile --perfer-offline --link-duplicates
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test --coverage --coverageReporters=lcov --coverageReporters=text-summary
- name: Send test coverage to codecov
continue-on-error: true
uses: codecov/codecov-action@v1
- name: Build
run: yarn build
- name: Archive dist components
uses: actions/upload-artifact@v2
with:
name: build
path: dist/
release:
needs:
- build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: lts/*
- name: Download dist from build job
uses: actions/download-artifact@v2
with:
name: build
path: dist
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/exec
@semantic-release/git
env:
GIT_AUTHOR_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }}