build(deps): bump docker/metadata-action from 62339db73c56dd749060f65a6ebb93a6e056b755 to 9dc751fe249ad99385a2583ee0d084c400eee04e #456
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@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint |