build(deps): bump docker/metadata-action from 0f8c876bafbf5dbce05c36682ec68e9a0274a48a to 879dcbb708d40f8b8679d4f7941b938a086e23a7 #363
Workflow file for this run
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
name: Build and Lint PRs | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint |