chore(deps): update docker/metadata-action digest to 8e1d546 #159
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
# 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 |