chore(deps): update dependency @types/node to v20.17.7 #410
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
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile --prefer-offline | |
- name: Linting | |
run: yarn lint | |
- name: Format Source Code | |
run: yarn format | |
- name: Unit Tests | |
run: yarn test | |
- name: Build | |
run: | | |
yarn clean | |
yarn build | |
yarn build:wrapper | |
- name: Integration Test | |
uses: ./ | |
with: | |
atmos-version: latest | |
install-wrapper: true | |
- name: permissions | |
run: | | |
chmod 755 /home/runner/work/github-action-setup-atmos/atmos/atmos | |
chmod 755 /home/runner/work/github-action-setup-atmos/atmos/atmos-bin | |
cat -v /home/runner/work/github-action-setup-atmos/atmos/atmos | |
- name: atmos | |
id: atmos | |
run: atmos version | |
- name: Verify outputs are available | |
run: | | |
echo "stdout: ${{ steps.atmos.outputs.stdout }}" | |
echo "stderr: ${{ steps.atmos.outputs.stderr }}" | |
echo "exitcode: ${{ steps.atmos.outputs.exitcode }}" | |
- name: Commit and Push Changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
committer_name: GitHub Action | |
# https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/ | |
message: "chore: [skip-ci] format code and generate build artifacts" | |
major-release-tagger: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: cloudposse/github-action-major-release-tagger@v1 | |
with: | |
dry-run: 'true' |