Skip to content

chore(deps): update docker/metadata-action digest to 8e1d546 #159

chore(deps): update docker/metadata-action digest to 8e1d546

chore(deps): update docker/metadata-action digest to 8e1d546 #159

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Validate
on:
push:
branches-ignore: ["main"]
jobs:
Validations:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install package
run: |
npm install
- name: Create env file
run: |
touch .env
echo SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} >> .env
- name: Validate linting
run: |
npm run lint
- name: Validate build
run: |
npm run build