ci(action): update actions/checkout action to v4 (#755) #51
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: Test & Release | |
on: | |
push: | |
branches: | |
- main | |
- beta | |
- '+([0-9])?(.{+([0-9]),x}).x' | |
jobs: | |
lint-and-test: | |
uses: ./.github/workflows/test.yml | |
secrets: inherit | |
release: | |
needs: lint-and-test | |
runs-on: ubuntu-latest | |
env: | |
node-version: 20.x | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- name: Checkout project | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ env.node-version }} | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: ${{ env.node-version }} | |
- name: Install packages | |
run: npm ci | |
- name: Build project | |
run: npm run build | |
- name: Run Semantic Release | |
run: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |