Skip to content

build(deps): update dependency luxon to ~3.4.0 (#730) #35

build(deps): update dependency luxon to ~3.4.0 (#730)

build(deps): update dependency luxon to ~3.4.0 (#730) #35

Workflow file for this run

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: Checkout project
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
with:
persist-credentials: false
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
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 }}